summaryrefslogtreecommitdiff
path: root/src/jscomp.sml
diff options
context:
space:
mode:
authorGravatar Adam Chlipala <adamc@hcoop.net>2009-06-02 19:28:25 -0400
committerGravatar Adam Chlipala <adamc@hcoop.net>2009-06-02 19:28:25 -0400
commit07f80839011b33db760cdac421ccea6226b07111 (patch)
tree426b37ee6b714afc0a597600850846d73c9d41a7 /src/jscomp.sml
parentaca4dfb6dc232643850cda851bed1421acfc693a (diff)
Lexing some more string escape sequences; JS versions of number read; fix problem with signature unification; escape < more often in Jscomp
Diffstat (limited to 'src/jscomp.sml')
-rw-r--r--src/jscomp.sml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/jscomp.sml b/src/jscomp.sml
index 91ac0acb..0178888a 100644
--- a/src/jscomp.sml
+++ b/src/jscomp.sml
@@ -523,9 +523,9 @@ fun process file =
"'"
| #"\"" => "\\\""
| #"<" =>
- if mode = Script then
+ (*if mode = Script then
"<"
- else
+ else*)
"\\074"
| #"\\" => "\\\\"
| #"\n" => "\\n"