aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/textmodes/sgml-mode.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el
index aec363dc10e..0ebd95f55c6 100644
--- a/lisp/textmodes/sgml-mode.el
+++ b/lisp/textmodes/sgml-mode.el
@@ -207,8 +207,8 @@ Any terminating `>' or `/' is not matched.")
207 207
208;; internal 208;; internal
209(defconst sgml-font-lock-keywords-1 209(defconst sgml-font-lock-keywords-1
210 '(("<\\([!?][a-z0-9]+\\)" 1 font-lock-keyword-face) 210 '(("<\\([!?][a-zA-Z0-9]+\\)" 1 font-lock-keyword-face)
211 ("<\\(/?[a-z0-9]+\\)" 1 font-lock-function-name-face) 211 ("<\\(/?[a-zA-Z0-9]+\\)" 1 font-lock-function-name-face)
212 ("[&%][-.A-Za-z0-9]+;?" . font-lock-variable-name-face) 212 ("[&%][-.A-Za-z0-9]+;?" . font-lock-variable-name-face)
213 ("<!--[^<>]*-->" . font-lock-comment-face))) 213 ("<!--[^<>]*-->" . font-lock-comment-face)))
214 214