summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRichard M. Stallman <rms@gnu.org>1996-09-13 21:53:55 +0000
committerRichard M. Stallman <rms@gnu.org>1996-09-13 21:53:55 +0000
commit958dbc764a4424629f8183e121a8f0e6cd0abec6 (patch)
tree0f91c0fde84ff72d3c7ad24e6a6b33d311941284
parent98c9b0650fcd04cd4b6e54f9cc846e328adcee63 (diff)
downloademacs-958dbc764a4424629f8183e121a8f0e6cd0abec6.tar.gz
(hif-token-regexp): Move ! after !=.
-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 4179c903275..5c97d41255e 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 -: garyo@avs.com 8/9/94
-(defconst hif-token-regexp "^\\(!\\|&&\\|||\\|[!=]=\\|[()+-]\\|\\w+\\)")
+(defconst hif-token-regexp "^\\(&&\\|||\\|[!=]=\\|!\\|[()+-]\\|\\w+\\)")
(defconst hif-end-of-comment "\\*/")