commit dc4857ac92e276ac4c0720fcc506e231b709b549
parent 16b79a2a4223bef8acdb82c6daf09fba3a55542d
Author: Ben Alpert <spicyjalapeno@gmail.com>
Date: Mon, 26 May 2014 01:13:52 -0700
Fix typesetting of '
Not 100% sure this is the right fix but it appears to work.
Test Plan: Typeset $x'$ in Perseus.
Auditors: emily
Diffstat:
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/Parser.js b/Parser.js
@@ -94,7 +94,7 @@ Parser.prototype.parseSuperscript = function(pos, mode) {
} else if (sup.type === "'") {
var pos = sup.position;
return new ParseResult(
- new ParseNode("textord", "\\prime"), sup.position, mode);
+ new ParseNode("textord", "\\prime", mode), sup.position, mode);
} else {
return null;
}