aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lisp/cus-edit.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index 60705b30552..74e63454ad9 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1092,7 +1092,11 @@ or default values have changed since the previous major Emacs release.
1092With argument SINCE-VERSION (a string), customize all settings 1092With argument SINCE-VERSION (a string), customize all settings
1093that were added or redefined since that version." 1093that were added or redefined since that version."
1094 1094
1095 (interactive "sCustomize options changed, since version (default all versions): ") 1095 (interactive
1096 (list
1097 (read-from-minibuffer
1098 (format "Customize options changed, since version (default %s): "
1099 customize-changed-options-previous-release))))
1096 (if (equal since-version "") 1100 (if (equal since-version "")
1097 (setq since-version nil) 1101 (setq since-version nil)
1098 (unless (condition-case nil 1102 (unless (condition-case nil