www

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README

commit c9c305d3040ca88b18748856a50b5bfeb58b4b60
parent a9d79e58c4cbe7c3d1c41ea80e9a13dc56f5ec3d
Author: Emily Eisenberg <xymostech@gmail.com>
Date:   Wed, 10 Jul 2013 12:11:39 -0700

Un-combine ords

Auditors: alpert

Diffstat:
Mlexer.js | 5++---
1 file changed, 2 insertions(+), 3 deletions(-)

diff --git a/lexer.js b/lexer.js @@ -2,9 +2,8 @@ function Lexer() { }; var normals = [ - [/^[/|@."0-9]+/, 'TEXTORD'], - [/^[`]/, 'TEXTORD'], - [/^[a-zA-Z]+/, 'MATHORD'], + [/^[/|@."`0-9]/, 'TEXTORD'], + [/^[a-zA-Z]/, 'MATHORD'], [/^[*+-]/, 'BIN'], [/^[=<>]/, 'REL'], [/^[,;]/, 'PUNCT'],