Log Message:
-----------
Typo that prevented the context name from being set properly.
Modified Files:
--------------
pg/macros:
contextOrdering.pl
Revision Data
-------------
Index: contextOrdering.pl
===================================================================
RCS file: /webwork/cvs/system/pg/macros/contextOrdering.pl,v
retrieving revision 1.7
retrieving revision 1.8
diff -Lmacros/contextOrdering.pl -Lmacros/contextOrdering.pl -u -r1.7 -r1.8
--- macros/contextOrdering.pl
+++ macros/contextOrdering.pl
@@ -116,7 +116,7 @@
$context->{error}{msg}{"Missing operand after '%s'"} = "Missing letter after '%s'";
$context = $main::context{'Ordering-List'} = $context->copy;
- $context->{name} eq 'Ordering-List';
+ $context->{name} = 'Ordering-List';
$context->operators->redefine(',',from => "Full");
$context->{value}{List} = "context::Ordering::Value::List";
|