From: Richard M. Stallman Date: Fri, 13 Sep 1996 21:53:55 +0000 (+0000) Subject: (hif-token-regexp): Move ! after !=. X-Git-Tag: emacs-20.1~3762 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=2fe16d3bc0f0692309746f11ce90f1090653b0b8;p=emacs.git (hif-token-regexp): Move ! after !=. --- 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 "\\*/")