]> git.eshelyaron.com Git - emacs.git/commitdiff
Revision: miles@gnu.org--gnu-2005/emacs--cvs-trunk--0--patch-414
authorMiles Bader <miles@gnu.org>
Tue, 14 Jun 2005 23:56:03 +0000 (23:56 +0000)
committerMiles Bader <miles@gnu.org>
Tue, 14 Jun 2005 23:56:03 +0000 (23:56 +0000)
Remove "-face" suffix from sh-script faces

2005-06-14  Miles Bader  <miles@gnu.org>

   * lisp/progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
   face name.
   (sh-heredoc-face): New backward-compatibility alias for renamed face.
   (sh-heredoc-face): Use renamed sh-heredoc face.

lisp/ChangeLog
lisp/progmodes/sh-script.el

index a510cb88590d5f2b4bec36a83855f382628818fb..b4cebfd0565088cd807c2b96b92decca34e31c34 100644 (file)
@@ -1,5 +1,10 @@
 2005-06-14  Miles Bader  <miles@gnu.org>
 
+       * progmodes/sh-script.el (sh-heredoc): Remove "-face" suffix from
+       face name.
+       (sh-heredoc-face): New backward-compatibility alias for renamed face.
+       (sh-heredoc-face): Use renamed sh-heredoc face.
+
        * progmodes/idlw-help.el (idlwave-help-link):
        Remove "-face" suffix from face name.
        (idlwave-help-link-face):
index 604ff8c1e782452f4904928848e4174c205ebc30..23d8374818ef66575da2f309657d596fdd8722e1 100644 (file)
@@ -792,7 +792,7 @@ See `sh-feature'.")
 \f
 ;; Font-Lock support
 
-(defface sh-heredoc-face
+(defface sh-heredoc
   '((((min-colors 88) (class color)
       (background dark))
      (:foreground "yellow1" :weight bold))
@@ -806,7 +806,9 @@ See `sh-feature'.")
      (:weight bold)))
   "Face to show a here-document"
   :group 'sh-indentation)
-(defvar sh-heredoc-face 'sh-heredoc-face)
+;; backward-compatibility alias
+(put 'sh-heredoc-face 'face-alias 'sh-heredoc)
+(defvar sh-heredoc-face 'sh-heredoc)
 
 (defface sh-escaped-newline '((t :inherit font-lock-string-face))
   "Face used for (non-escaped) backslash at end of a line in Shell-script mode."