diff options
author | Damien Doligez <damien.doligez-inria.fr> | 2003-06-12 11:12:49 +0000 |
---|---|---|
committer | Damien Doligez <damien.doligez-inria.fr> | 2003-06-12 11:12:49 +0000 |
commit | 02db1196fef0400df5a8e681d392a8e04aed19f9 (patch) | |
tree | 805d9c67a05c8d0bc817a7a935c9af6875d2f5b1 | |
parent | 10933b0b8ffd42460afd96d5e084c1b18ffc77f7 (diff) |
PR#1620
git-svn-id: http://caml.inria.fr/svn/ocaml/trunk@5590 f963ae5c-01c2-4b8c-9fe0-0dff7051ff02
-rw-r--r-- | camlp4/etc/pr_o.ml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/camlp4/etc/pr_o.ml b/camlp4/etc/pr_o.ml index e788f80cd..a2b3a9f8f 100644 --- a/camlp4/etc/pr_o.ml +++ b/camlp4/etc/pr_o.ml @@ -79,7 +79,7 @@ value is_infix = ["=="; "!="; "+"; "+."; "-"; "-."; "*"; "*."; "/"; "/."; "**"; "**."; "="; "=."; "<>"; "<>."; "<"; "<."; ">"; ">."; "<="; "<=."; ">="; ">=."; "^"; "@"; "asr"; "land"; "lor"; "lsl"; "lsr"; "lxor"; "mod"; "or"; - "quo"; "&&"; "||"; "~-"; "~-."]; + "&&"; "||"; "~-"; "~-."]; fun s -> try Hashtbl.find infixes s with [ Not_found -> False ] } ; @@ -91,7 +91,7 @@ value is_keyword = ["!"; "!="; "#"; "$"; "%"; "&"; "&&"; "'"; "("; ")"; "*"; "**"; "+"; ","; "-"; "-."; "->"; "."; ".."; "/"; ":"; "::"; ":="; ":>"; ";"; ";;"; "<"; "<-"; "<="; "<>"; "="; "=="; ">"; ">="; ">]"; ">}"; "?"; "??"; - "@"; "["; "[<"; "[|"; "]"; "^"; "_"; "`"; "and"; "as"; "asr"; "assert"; + "@"; "["; "[<"; "[|"; "]"; "^"; "_"; "`"; "and"; "as"; "assert"; "asr"; "begin"; "class"; "constraint"; "do"; "done"; "downto"; "else"; "end"; "exception"; "external"; "false"; "for"; "fun"; "function"; "functor"; "if"; "in"; "include"; "inherit"; "initializer"; "land"; "lazy"; "let"; |