diff options
author | Stefan Kangas <stefan@marxist.se> | 2021-12-20 22:12:25 +0100 |
---|---|---|
committer | Stefan Kangas <stefan@marxist.se> | 2021-12-20 22:16:24 +0100 |
commit | c167009400f62149a6ab1568ababcfa6ce422467 (patch) | |
tree | 0a88843f3859be4180db53ffd320753c2e31138a /lisp/vc/add-log.el | |
parent | eaa44ca40e8da9ba86e6e03b76b41fd6843661d6 (diff) | |
download | emacs-c167009400f62149a6ab1568ababcfa6ce422467.tar.gz emacs-c167009400f62149a6ab1568ababcfa6ce422467.tar.bz2 emacs-c167009400f62149a6ab1568ababcfa6ce422467.zip |
Make some variable aliases obsolete
* lisp/progmodes/make-mode.el (makefile-query-one-target-method):
* lisp/skeleton.el (skeleton-transformation, skeleton-filter):
* lisp/textmodes/artist.el (artist-text-renderer):
* lisp/textmodes/bibtex.el (bibtex-autokey-name-case-convert):
(bibtex-autokey-titleword-case-convert):
* lisp/textmodes/ispell.el (ispell-format-word):
* lisp/textmodes/sgml-mode.el (sgml-transformation):
* lisp/vc/add-log.el (change-log-time-zone-rule): Make variable
aliases obsolete.
Diffstat (limited to 'lisp/vc/add-log.el')
-rw-r--r-- | lisp/vc/add-log.el | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/lisp/vc/add-log.el b/lisp/vc/add-log.el index 1290d7e03a5..6f45186837f 100644 --- a/lisp/vc/add-log.el +++ b/lisp/vc/add-log.el @@ -590,9 +590,8 @@ Compatibility function for \\[next-error] invocations." ["Go To Source" change-log-goto-source :help "Go to source location of ChangeLog tag near point"])) -;; It used to be called change-log-time-zone-rule but really should be -;; called add-log-time-zone-rule since it's only used from add-log-* code. -(defvaralias 'change-log-time-zone-rule 'add-log-time-zone-rule) +(define-obsolete-variable-alias 'change-log-time-zone-rule + 'add-log-time-zone-rule "29.1") (defvar add-log-time-zone-rule nil "Time zone rule used for calculating change log time stamps. If nil, use local time. If t, use Universal Time. |