(customize-changed-options-previous-release): Prev release is 21.1.
(customize-changed-options): Doc fix. (customize-changed): New alias.
This commit is contained in:
parent
b758ae9ad9
commit
bba50f8a9e
2 changed files with 16 additions and 14 deletions
|
@ -1,8 +1,3 @@
|
|||
2005-12-22 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* cus-edit.el (customize-browse): Reword the top-of-buffer help intro.
|
||||
(custom-buffer-create-internal): Fix previous change.
|
||||
|
||||
2005-12-22 Richard M. Stallman <rms@gnu.org>
|
||||
|
||||
* cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
|
||||
|
@ -10,6 +5,11 @@
|
|||
Don't include buttons that write a file when there's no file.
|
||||
(custom-variable-menu, custom-face-menu, custom-group-menu):
|
||||
Don't include commands that write a file when there's no file.
|
||||
(customize-browse): Reword the top-of-buffer help intro.
|
||||
(custom-buffer-create-internal): Fix previous change.
|
||||
(customize-changed-options-previous-release): Prev release is 21.1.
|
||||
(customize-changed-options): Doc fix.
|
||||
(customize-changed): New alias.
|
||||
|
||||
2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
|
||||
|
||||
|
|
|
@ -1065,19 +1065,21 @@ Show the buffer in another window, but don't select it."
|
|||
(unless (eq symbol basevar)
|
||||
(message "`%s' is an alias for `%s'" symbol basevar))))
|
||||
|
||||
(defvar customize-changed-options-previous-release "20.2"
|
||||
(defvar customize-changed-options-previous-release "21.1"
|
||||
"Version for `customize-changed-options' to refer back to by default.")
|
||||
|
||||
;;;###autoload
|
||||
(defun customize-changed-options (since-version)
|
||||
"Customize all user option variables changed in Emacs itself.
|
||||
This includes new user option variables and faces, and new
|
||||
customization groups, as well as older options and faces whose default
|
||||
values have changed since the previous major Emacs release.
|
||||
(defalias 'customize-changed 'customize-changed-options)
|
||||
|
||||
With argument SINCE-VERSION (a string), customize all user option
|
||||
variables that were added (or their meanings were changed) since that
|
||||
version."
|
||||
;;;###autoload
|
||||
(defun customize-changed-options (since-version)
|
||||
"Customize all settings whose meanings have changed in Emacs itself.
|
||||
This includes new user option variables and faces, and new
|
||||
customization groups, as well as older options and faces whose meanings
|
||||
or default values have changed since the previous major Emacs release.
|
||||
|
||||
With argument SINCE-VERSION (a string), customize all settings
|
||||
that were added or redefined since that version."
|
||||
|
||||
(interactive "sCustomize options changed, since version (default all versions): ")
|
||||
(if (equal since-version "")
|
||||
|
|
Loading…
Add table
Reference in a new issue