comparison lisp/cus-edit.el @ 69540:a22167168ac4

(customize-changed-options): Mention explicit version number as default in prompt.
author Luc Teirlinck <teirllm@auburn.edu>
date Fri, 17 Mar 2006 23:12:14 +0000
parents 901e5cda9c30
children efd1add5bedf e3bacb89536a
comparison
equal deleted inserted replaced
69539:40d573fa1d3d 69540:a22167168ac4
1090 or default values have changed since the previous major Emacs release. 1090 or default values have changed since the previous major Emacs release.
1091 1091
1092 With argument SINCE-VERSION (a string), customize all settings 1092 With argument SINCE-VERSION (a string), customize all settings
1093 that were added or redefined since that version." 1093 that 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
1099 (numberp (read since-version)) 1103 (numberp (read since-version))
1100 (error nil)) 1104 (error nil))