diff options
author | Glenn Morris <rgm@gnu.org> | 2008-04-12 03:15:06 +0000 |
---|---|---|
committer | Glenn Morris <rgm@gnu.org> | 2008-04-12 03:15:06 +0000 |
commit | e85ee8818c31c41855fe45f8af47f49afce72766 (patch) | |
tree | a73bde6c8dec43716e9594212b1dd17adc002c60 /lisp/hilit-chg.el | |
parent | d9f3b7b6c30fb176913d10efffd21966267a6d8c (diff) | |
download | emacs-e85ee8818c31c41855fe45f8af47f49afce72766.tar.gz |
Move non-autoloaded define-obsolete-variable-alias calls for
defcustoms not in dumped files before the associated defcustom.
Diffstat (limited to 'lisp/hilit-chg.el')
-rw-r--r-- | lisp/hilit-chg.el | 18 |
1 files changed, 7 insertions, 11 deletions
diff --git a/lisp/hilit-chg.el b/lisp/hilit-chg.el index 99376e492f9..63009747d9d 100644 --- a/lisp/hilit-chg.el +++ b/lisp/hilit-chg.el @@ -219,6 +219,9 @@ ;; A (not very good) default list of colors to rotate through. ;; +(define-obsolete-variable-alias 'highlight-changes-colours + 'highlight-changes-colors "22.1") + (defcustom highlight-changes-colors (if (eq (frame-parameter nil 'background-mode) 'light) ;; defaults for light background: @@ -236,10 +239,6 @@ colors then use this, if you want fancier faces then set :type '(repeat color) :group 'highlight-changes) -(define-obsolete-variable-alias 'highlight-changes-colours - 'highlight-changes-colors "22.1") - - ;; When you invoke highlight-changes-mode, should highlight-changes-visible-mode ;; be on or off? @@ -260,6 +259,8 @@ When a buffer is in Highlight Changes mode the function ;; These are the strings displayed in the mode-line for the minor mode: +(define-obsolete-variable-alias 'highlight-changes-active-string + 'highlight-changes-visible-string "23.1") (defcustom highlight-changes-visible-string " +Chg" "The string used when in Highlight Changes mode and changes are visible. @@ -269,8 +270,8 @@ a string with a leading space." (const :tag "None" nil)) :group 'highlight-changes) -(define-obsolete-variable-alias 'highlight-changes-active-string - 'highlight-changes-visible-string "23.1") +(define-obsolete-variable-alias 'highlight-changes-passive-string + 'highlight-changes-invisible-string "23.1") (defcustom highlight-changes-invisible-string " -Chg" "The string used when in Highlight Changes mode and changes are hidden. @@ -280,11 +281,6 @@ a string with a leading space." (const :tag "None" nil)) :group 'highlight-changes) -(define-obsolete-variable-alias 'highlight-changes-passive-string - 'highlight-changes-invisible-string "23.1") - - - (defcustom highlight-changes-global-modes t "Determine whether a buffer is suitable for global Highlight Changes mode. |