diff options
| -rw-r--r-- | lisp/ChangeLog | 6 | ||||
| -rw-r--r-- | lisp/textmodes/sgml-mode.el | 6 |
2 files changed, 10 insertions, 2 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5fe427d299f..0b7338f31fd 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,5 +1,11 @@ | |||
| 1 | 2005-06-10 Miles Bader <miles@gnu.org> | 1 | 2005-06-10 Miles Bader <miles@gnu.org> |
| 2 | 2 | ||
| 3 | * textmodes/sgml-mode.el (sgml-namespace): Remove "-face" suffix | ||
| 4 | from face name. | ||
| 5 | (sgml-namespace-face): New backward-compatibility alias for | ||
| 6 | renamed face. | ||
| 7 | (sgml-namespace-face): Use renamed sgml-namespace face. | ||
| 8 | |||
| 3 | * textmodes/org.el (org-level-1, org-level-2, org-level-3) | 9 | * textmodes/org.el (org-level-1, org-level-2, org-level-3) |
| 4 | (org-level-4, org-level-5, org-level-6, org-level-7) | 10 | (org-level-4, org-level-5, org-level-6, org-level-7) |
| 5 | (org-level-8, org-warning, org-headline-done) | 11 | (org-level-8, org-warning, org-headline-done) |
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 |