diff options
author | Richard M. Stallman <rms@gnu.org> | 1996-09-13 21:53:55 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1996-09-13 21:53:55 +0000 |
commit | 958dbc764a4424629f8183e121a8f0e6cd0abec6 (patch) | |
tree | 0f91c0fde84ff72d3c7ad24e6a6b33d311941284 /lisp/progmodes | |
parent | 98c9b0650fcd04cd4b6e54f9cc846e328adcee63 (diff) | |
download | emacs-958dbc764a4424629f8183e121a8f0e6cd0abec6.tar.gz |
(hif-token-regexp): Move ! after !=.
Diffstat (limited to 'lisp/progmodes')
-rw-r--r-- | lisp/progmodes/hideif.el | 2 |
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 "\\*/") |