diff options
Diffstat (limited to 'lisp/textmodes/sgml-mode.el')
| -rw-r--r-- | lisp/textmodes/sgml-mode.el | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/lisp/textmodes/sgml-mode.el b/lisp/textmodes/sgml-mode.el index cdc2916e799..7e1167a9396 100644 --- a/lisp/textmodes/sgml-mode.el +++ b/lisp/textmodes/sgml-mode.el | |||
| @@ -248,11 +248,13 @@ separated by a space." | |||
| 248 | "Regular expression that matches a non-empty start tag. | 248 | "Regular expression that matches a non-empty start tag. |
| 249 | Any terminating `>' or `/' is not matched.") | 249 | Any terminating `>' or `/' is not matched.") |
| 250 | 250 | ||
| 251 | (defface sgml-namespace-face | 251 | (defface sgml-namespace |
| 252 | '((t (:inherit font-lock-builtin-face))) | 252 | '((t (:inherit font-lock-builtin-face))) |
| 253 | "`sgml-mode' face used to highlight the namespace part of identifiers." | 253 | "`sgml-mode' face used to highlight the namespace part of identifiers." |
| 254 | :group 'sgml) | 254 | :group 'sgml) |
| 255 | (defvar sgml-namespace-face 'sgml-namespace-face) | 255 | ;; backward-compatibility alias |
| 256 | (put 'sgml-namespace-face 'face-alias 'sgml-namespace) | ||
| 257 | (defvar sgml-namespace-face 'sgml-namespace) | ||
| 256 | 258 | ||
| 257 | ;; internal | 259 | ;; internal |
| 258 | (defconst sgml-font-lock-keywords-1 | 260 | (defconst sgml-font-lock-keywords-1 |