summaryrefslogtreecommitdiff
path: root/lisp/hilit-chg.el
diff options
context:
space:
mode:
authorGlenn Morris <rgm@gnu.org>2008-04-12 03:17:19 +0000
committerGlenn Morris <rgm@gnu.org>2008-04-12 03:17:19 +0000
commitcd6ef82d85dcd34f98b2ae6cec97b495f9a4e8ca (patch)
treed7cef036c6b82dcaed2f123dbf0e6c64daa7d1bf /lisp/hilit-chg.el
parentf8754ca2dea51bbcddb30dedc4c4d1e6383fa0c1 (diff)
downloademacs-cd6ef82d85dcd34f98b2ae6cec97b495f9a4e8ca.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.el18
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.