aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-12-23 01:34:27 +0000
committerRichard M. Stallman2005-12-23 01:34:27 +0000
commitbba50f8a9e697263139b19872ee0cc8f0e46b317 (patch)
tree95bd33c694f6716c6f325c444bf22a381b74dd44
parentb758ae9ad97fdc1b2750b9ec8801aa85a4e6dbfc (diff)
downloademacs-bba50f8a9e697263139b19872ee0cc8f0e46b317.tar.gz
emacs-bba50f8a9e697263139b19872ee0cc8f0e46b317.zip
(customize-changed-options-previous-release): Prev release is 21.1.
(customize-changed-options): Doc fix. (customize-changed): New alias.
-rw-r--r--lisp/ChangeLog10
-rw-r--r--lisp/cus-edit.el16
2 files changed, 14 insertions, 12 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 549f4b946c4..0efa8508fe2 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,15 +1,15 @@
12005-12-22 Richard M. Stallman <rms@gnu.org> 12005-12-22 Richard M. Stallman <rms@gnu.org>
2
3 * cus-edit.el (customize-browse): Reword the top-of-buffer help intro.
4 (custom-buffer-create-internal): Fix previous change.
5
62005-12-22 Richard M. Stallman <rms@gnu.org>
7 2
8 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt. 3 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
9 (custom-buffer-create-internal): Reword the top-of-buffer help intro. 4 (custom-buffer-create-internal): Reword the top-of-buffer help intro.
10 Don't include buttons that write a file when there's no file. 5 Don't include buttons that write a file when there's no file.
11 (custom-variable-menu, custom-face-menu, custom-group-menu): 6 (custom-variable-menu, custom-face-menu, custom-group-menu):
12 Don't include commands that write a file when there's no file. 7 Don't include commands that write a file when there's no file.
8 (customize-browse): Reword the top-of-buffer help intro.
9 (custom-buffer-create-internal): Fix previous change.
10 (customize-changed-options-previous-release): Prev release is 21.1.
11 (customize-changed-options): Doc fix.
12 (customize-changed): New alias.
13 13
142005-12-22 Stefan Monnier <monnier@iro.umontreal.ca> 142005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
15 15
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index c968770043c..ae64f94251b 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1065,19 +1065,21 @@ Show the buffer in another window, but don't select it."
1065 (unless (eq symbol basevar) 1065 (unless (eq symbol basevar)
1066 (message "`%s' is an alias for `%s'" symbol basevar)))) 1066 (message "`%s' is an alias for `%s'" symbol basevar))))
1067 1067
1068(defvar customize-changed-options-previous-release "20.2" 1068(defvar customize-changed-options-previous-release "21.1"
1069 "Version for `customize-changed-options' to refer back to by default.") 1069 "Version for `customize-changed-options' to refer back to by default.")
1070 1070
1071;;;###autoload 1071;;;###autoload
1072(defalias 'customize-changed 'customize-changed-options)
1073
1074;;;###autoload
1072(defun customize-changed-options (since-version) 1075(defun customize-changed-options (since-version)
1073 "Customize all user option variables changed in Emacs itself. 1076 "Customize all settings whose meanings have changed in Emacs itself.
1074This includes new user option variables and faces, and new 1077This includes new user option variables and faces, and new
1075customization groups, as well as older options and faces whose default 1078customization groups, as well as older options and faces whose meanings
1076values have changed since the previous major Emacs release. 1079or default values have changed since the previous major Emacs release.
1077 1080
1078With argument SINCE-VERSION (a string), customize all user option 1081With argument SINCE-VERSION (a string), customize all settings
1079variables that were added (or their meanings were changed) since that 1082that were added or redefined since that version."
1080version."
1081 1083
1082 (interactive "sCustomize options changed, since version (default all versions): ") 1084 (interactive "sCustomize options changed, since version (default all versions): ")
1083 (if (equal since-version "") 1085 (if (equal since-version "")