aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes
diff options
context:
space:
mode:
authorStefan Monnier <[email protected]>2008-04-12 04:38:45 +0000
committerStefan Monnier <[email protected]>2008-04-12 04:38:45 +0000
commitfb970f91df77e01d96f055d5d5f000080d7f8b88 (patch)
tree2ce84fefd467c2a4b6ddc060fa334bb490f55744 /lisp/progmodes
parentc3de239774f0b1f17219a456be0dd7f52f9be9ec (diff)
(hif-factor): Handle unary minus.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r--lisp/progmodes/hideif.el4
1 files changed, 4 insertions, 0 deletions
diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el
index 5c9bf45e39..9f83d89532 100644
--- a/lisp/progmodes/hideif.el
+++ b/lisp/progmodes/hideif.el
@@ -496,6 +496,10 @@ that form should be displayed.")
((numberp hif-token)
(prog1 hif-token (hif-nexttoken)))
+ ;; Unary plus/minus.
+ ((memq hif-token '(hif-minus hif-plus))
+ (list (prog1 hif-token (hif-nexttoken)) 0 (hif-factor)))
+
(t ; identifier
(let ((ident hif-token))
(if (memq ident '(or and))