From: dpvc v. a. <we...@ma...> - 2009-10-03 16:56:17
|
Log Message: ----------- Reduction rule should be off by default Modified Files: -------------- pg/macros: parserPrime.pl Revision Data ------------- Index: parserPrime.pl =================================================================== RCS file: /webwork/cvs/system/pg/macros/parserPrime.pl,v retrieving revision 1.2 retrieving revision 1.3 diff -Lmacros/parserPrime.pl -Lmacros/parserPrime.pl -u -r1.2 -r1.3 --- macros/parserPrime.pl +++ macros/parserPrime.pl @@ -126,7 +126,7 @@ precedence => 8.5, associativity => "right", type => "unary", string => "'", class => "parser::Prime::UOP::prime", isCommand => 1 }); - $context->reduction->set("(f)'" => 1); + $context->reduction->set("(f)'" => 0); $context->flags->set(prime_variable => $x) if defined($x); } |