[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el
From: |
Miles Bader |
Subject: |
[Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el |
Date: |
Fri, 10 Jun 2005 06:45:18 -0400 |
Index: emacs/lisp/textmodes/sgml-mode.el
diff -c emacs/lisp/textmodes/sgml-mode.el:1.106
emacs/lisp/textmodes/sgml-mode.el:1.107
*** emacs/lisp/textmodes/sgml-mode.el:1.106 Fri May 27 12:37:29 2005
--- emacs/lisp/textmodes/sgml-mode.el Fri Jun 10 10:45:17 2005
***************
*** 248,258 ****
"Regular expression that matches a non-empty start tag.
Any terminating `>' or `/' is not matched.")
! (defface sgml-namespace-face
'((t (:inherit font-lock-builtin-face)))
"`sgml-mode' face used to highlight the namespace part of identifiers."
:group 'sgml)
! (defvar sgml-namespace-face 'sgml-namespace-face)
;; internal
(defconst sgml-font-lock-keywords-1
--- 248,260 ----
"Regular expression that matches a non-empty start tag.
Any terminating `>' or `/' is not matched.")
! (defface sgml-namespace
'((t (:inherit font-lock-builtin-face)))
"`sgml-mode' face used to highlight the namespace part of identifiers."
:group 'sgml)
! ;; backward-compatibility alias
! (put 'sgml-namespace-face 'face-alias 'sgml-namespace)
! (defvar sgml-namespace-face 'sgml-namespace)
;; internal
(defconst sgml-font-lock-keywords-1
- [Emacs-diffs] Changes to emacs/lisp/textmodes/sgml-mode.el,
Miles Bader <=