# HG changeset patch # User Glenn Morris # Date 1251822383 0 # Node ID 5b25a52d36d3cfefd33fc707ed28b5829f73852b # Parent ddf36011101487f449a9c3f42378f323f1f67088 Mark face aliases with "-face" suffix as obsolete. diff -r ddf360111014 -r 5b25a52d36d3 lisp/ChangeLog --- a/lisp/ChangeLog Tue Sep 01 16:17:53 2009 +0000 +++ b/lisp/ChangeLog Tue Sep 01 16:26:23 2009 +0000 @@ -50,6 +50,11 @@ * eshell/em-prompt.el (eshell-prompt-face): * eshell/esh-test.el (eshell-test-ok-face, eshell-test-failed-face): * obsolete/old-whitespace.el (whitespace-highlight-face): + * progmodes/antlr-mode.el (antlr-font-lock-default-face) + (antlr-font-lock-keyword-face, antlr-font-lock-syntax-face) + (antlr-font-lock-ruledef-face, antlr-font-lock-tokendef-face) + (antlr-font-lock-ruleref-face, antlr-font-lock-tokenref-face) + (antlr-font-lock-literal-face): * progmodes/ebrowse.el (ebrowse-tree-mark-face) (ebrowse-root-class-face, ebrowse-file-name-face) (ebrowse-default-face, ebrowse-member-attribute-face) diff -r ddf360111014 -r 5b25a52d36d3 lisp/progmodes/antlr-mode.el --- a/lisp/progmodes/antlr-mode.el Tue Sep 01 16:17:53 2009 +0000 +++ b/lisp/progmodes/antlr-mode.el Tue Sep 01 16:26:23 2009 +0000 @@ -835,6 +835,7 @@ :group 'antlr) ;; backward-compatibility alias (put 'antlr-font-lock-default-face 'face-alias 'antlr-default) +(put 'antlr-font-lock-default-face 'obsolete-face "22.1") (defvar antlr-keyword-face 'antlr-keyword) (defface antlr-keyword @@ -846,6 +847,7 @@ :group 'antlr) ;; backward-compatibility alias (put 'antlr-font-lock-keyword-face 'face-alias 'antlr-keyword) +(put 'antlr-font-lock-keyword-face 'obsolete-face "22.1") (defvar antlr-syntax-face 'antlr-keyword) (defface antlr-syntax @@ -857,6 +859,7 @@ :group 'antlr) ;; backward-compatibility alias (put 'antlr-font-lock-syntax-face 'face-alias 'antlr-syntax) +(put 'antlr-font-lock-syntax-face 'obsolete-face "22.1") (defvar antlr-ruledef-face 'antlr-ruledef) (defface antlr-ruledef @@ -868,6 +871,7 @@ :group 'antlr) ;; backward-compatibility alias (put 'antlr-font-lock-ruledef-face 'face-alias 'antlr-ruledef) +(put 'antlr-font-lock-ruledef-face 'obsolete-face "22.1") (defvar antlr-tokendef-face 'antlr-tokendef) (defface antlr-tokendef @@ -879,6 +883,7 @@ :group 'antlr) ;; backward-compatibility alias (put 'antlr-font-lock-tokendef-face 'face-alias 'antlr-tokendef) +(put 'antlr-font-lock-tokendef-face 'obsolete-face "22.1") (defvar antlr-ruleref-face 'antlr-ruleref) (defface antlr-ruleref @@ -888,6 +893,7 @@ :group 'antlr) ;; backward-compatibility alias (put 'antlr-font-lock-ruleref-face 'face-alias 'antlr-ruleref) +(put 'antlr-font-lock-ruleref-face 'obsolete-face "22.1") (defvar antlr-tokenref-face 'antlr-tokenref) (defface antlr-tokenref @@ -897,6 +903,7 @@ :group 'antlr) ;; backward-compatibility alias (put 'antlr-font-lock-tokenref-face 'face-alias 'antlr-tokenref) +(put 'antlr-font-lock-tokenref-face 'obsolete-face "22.1") (defvar antlr-literal-face 'antlr-literal) (defface antlr-literal @@ -910,6 +917,7 @@ :group 'antlr) ;; backward-compatibility alias (put 'antlr-font-lock-literal-face 'face-alias 'antlr-literal) +(put 'antlr-font-lock-literal-face 'obsolete-face "22.1") (defcustom antlr-font-lock-literal-regexp "\"\\(\\sw\\(\\sw\\|-\\)*\\)\"" "Regexp matching literals with special syntax highlighting, or nil.