aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-09-13 21:53:55 +0000
committerRichard M. Stallman1996-09-13 21:53:55 +0000
commit2fe16d3bc0f0692309746f11ce90f1090653b0b8 (patch)
tree2f48aa3c618d080e7d2de24979f2b7a58d1cc106
parentcb252880e55ab80a0244117c3f3b699db307f3ce (diff)
downloademacs-2fe16d3bc0f0692309746f11ce90f1090653b0b8.tar.gz
emacs-2fe16d3bc0f0692309746f11ce90f1090653b0b8.zip
(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.")
351 351
352; pattern to match initial identifier, !, &&, ||, (, or ). 352; pattern to match initial identifier, !, &&, ||, (, or ).
353; Added ==, + and -: garyo@avs.com 8/9/94 353; Added ==, + and -: garyo@avs.com 8/9/94
354(defconst hif-token-regexp "^\\(!\\|&&\\|||\\|[!=]=\\|[()+-]\\|\\w+\\)") 354(defconst hif-token-regexp "^\\(&&\\|||\\|[!=]=\\|!\\|[()+-]\\|\\w+\\)")
355(defconst hif-end-of-comment "\\*/") 355(defconst hif-end-of-comment "\\*/")
356 356
357 357