Log Message:
-----------
Accidentally had left 'prime' as
Modified Files:
--------------
pg/macros:
parserPrime.pl
Revision Data
-------------
Index: parserPrime.pl
===================================================================
RCS file: /webwork/cvs/system/pg/macros/parserPrime.pl,v
retrieving revision 1.1
retrieving revision 1.2
diff -Lmacros/parserPrime.pl -Lmacros/parserPrime.pl -u -r1.1 -r1.2
--- macros/parserPrime.pl
+++ macros/parserPrime.pl
@@ -122,7 +122,7 @@
my $self = shift; my $x = shift;
my $context = main::Context();
if (Value::isContext($x)) {$context = $x; $x = shift}
- $context->operators->add("`"=>{
+ $context->operators->add("'"=>{
precedence => 8.5, associativity => "right", type => "unary", string => "'",
class => "parser::Prime::UOP::prime", isCommand => 1
});
|