aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/progmodes/hideif.el
diff options
context:
space:
mode:
authorRichard M. Stallman <[email protected]>1996-09-13 21:53:55 +0000
committerRichard M. Stallman <[email protected]>1996-09-13 21:53:55 +0000
commit2fe16d3bc0f0692309746f11ce90f1090653b0b8 (patch)
tree2f48aa3c618d080e7d2de24979f2b7a58d1cc106 /lisp/progmodes/hideif.el
parentcb252880e55ab80a0244117c3f3b699db307f3ce (diff)
(hif-token-regexp): Move ! after !=.
Diffstat (limited to 'lisp/progmodes/hideif.el')
-rw-r--r--lisp/progmodes/hideif.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/hideif.el b/lisp/progmodes/hideif.el
index 4179c90327..5c97d41255 100644
--- a/lisp/progmodes/hideif.el
+++ b/lisp/progmodes/hideif.el
@@ -351,7 +351,7 @@ that form should be displayed.")
; pattern to match initial identifier, !, &&, ||, (, or ).
; Added ==, + and -: [email protected] 8/9/94
-(defconst hif-token-regexp "^\\(!\\|&&\\|||\\|[!=]=\\|[()+-]\\|\\w+\\)")
+(defconst hif-token-regexp "^\\(&&\\|||\\|[!=]=\\|!\\|[()+-]\\|\\w+\\)")
(defconst hif-end-of-comment "\\*/")