diff options
author | Adam Chlipala <adamc@hcoop.net> | 2009-06-02 13:55:10 -0400 |
---|---|---|
committer | Adam Chlipala <adamc@hcoop.net> | 2009-06-02 13:55:10 -0400 |
commit | e103ad374e8cb7ea52e27c517fca761b9810028a (patch) | |
tree | a480b7bdd4750056caf3b92f4dabd2a82babfc71 /src/elisp/urweb-move.el | |
parent | 03ab7faa47089d1dc5757adc0288d63f02b3ade8 (diff) |
Fix relative precedence of ; and case-stuff
Diffstat (limited to 'src/elisp/urweb-move.el')
-rw-r--r-- | src/elisp/urweb-move.el | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/elisp/urweb-move.el b/src/elisp/urweb-move.el index 55c6bce6..08cd19e2 100644 --- a/src/elisp/urweb-move.el +++ b/src/elisp/urweb-move.el @@ -81,11 +81,12 @@ (defconst urweb-syntax-prec (urweb-preproc-alist - `(((";" ",") . 20) + `(("," . 20) (("=>" "d=" "=of") . (65 . 40)) ("|" . (47 . 30)) (("case" "of" "fn") . 45) (("if" "then" "else" ) . 50) + (";" . 53) (("<-") . 55) ("||" . 70) ("&&" . 80) |