Mercurial > emacs
changeset 22222:8e667bbef6d6
(sgml-font-lock-keywords-1): Accept upper case like lower case.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 25 May 1998 03:28:06 +0000 |
parents | 239a4b800303 |
children | 5d15aed3a37c |
files | lisp/textmodes/sgml-mode.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/textmodes/sgml-mode.el Sun May 24 23:24:25 1998 +0000 +++ b/lisp/textmodes/sgml-mode.el Mon May 25 03:28:06 1998 +0000 @@ -207,8 +207,8 @@ ;; internal (defconst sgml-font-lock-keywords-1 - '(("<\\([!?][a-z0-9]+\\)" 1 font-lock-keyword-face) - ("<\\(/?[a-z0-9]+\\)" 1 font-lock-function-name-face) + '(("<\\([!?][a-zA-Z0-9]+\\)" 1 font-lock-keyword-face) + ("<\\(/?[a-zA-Z0-9]+\\)" 1 font-lock-function-name-face) ("[&%][-.A-Za-z0-9]+;?" . font-lock-variable-name-face) ("<!--[^<>]*-->" . font-lock-comment-face)))