aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman2005-12-23 01:21:16 +0000
committerRichard M. Stallman2005-12-23 01:21:16 +0000
commitb758ae9ad97fdc1b2750b9ec8801aa85a4e6dbfc (patch)
treeb067ce7e5f6017f471c8e3f2fb3dabe403453002
parent0a57ffed62a2fc5d24cc654f02b40be80d104c09 (diff)
downloademacs-b758ae9ad97fdc1b2750b9ec8801aa85a4e6dbfc.tar.gz
emacs-b758ae9ad97fdc1b2750b9ec8801aa85a4e6dbfc.zip
(customize-browse): Reword the top-of-buffer help intro.
(custom-buffer-create-internal): Fix previous change.
-rw-r--r--lisp/ChangeLog13
-rw-r--r--lisp/cus-edit.el19
2 files changed, 25 insertions, 7 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog
index 1aeb8df4fcc..549f4b946c4 100644
--- a/lisp/ChangeLog
+++ b/lisp/ChangeLog
@@ -1,3 +1,16 @@
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
8 * cus-edit.el (custom-variable-prompt): Say "variable" in prompt.
9 (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.
11 (custom-variable-menu, custom-face-menu, custom-group-menu):
12 Don't include commands that write a file when there's no file.
13
12005-12-22 Stefan Monnier <monnier@iro.umontreal.ca> 142005-12-22 Stefan Monnier <monnier@iro.umontreal.ca>
2 15
3 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults 16 * font-lock.el (font-lock-default-fontify-buffer): Try and set-defaults
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el
index cfdb91a2ea4..c968770043c 100644
--- a/lisp/cus-edit.el
+++ b/lisp/cus-edit.el
@@ -1430,14 +1430,14 @@ Otherwise use brackets."
1430 (if description 1430 (if description
1431 (widget-insert description)) 1431 (widget-insert description))
1432 (widget-insert (format ". 1432 (widget-insert (format ".
1433%s indicate buttons; type RET or click mouse-1 to actuate one. 1433%s buttons; type RET or click mouse-1 to actuate one.
1434Editing a setting changes only the text in the buffer. 1434Editing a setting changes only the text in the buffer.
1435Use the setting's State button to set it or save changes in it. 1435Use the setting's State button to set it or save changes in it.
1436Saving a change normally works by editing your Emacs init file. 1436Saving a change normally works by editing your Emacs init file.
1437See " 1437See "
1438 (if custom-raised-buttons 1438 (if custom-raised-buttons
1439 "`Raised' buttons" 1439 "`Raised' text indicates"
1440 "Square brackets"))) 1440 "Square brackets indicate")))
1441 (widget-create 'info-link 1441 (widget-create 'info-link
1442 :tag "Custom file" 1442 :tag "Custom file"
1443 "(emacs)Saving Customizations") 1443 "(emacs)Saving Customizations")
@@ -1562,10 +1562,15 @@ Un-customize all settings in this buffer--save them with standard values."
1562 (let ((name "*Customize Browser*")) 1562 (let ((name "*Customize Browser*"))
1563 (pop-to-buffer (custom-get-fresh-buffer name))) 1563 (pop-to-buffer (custom-get-fresh-buffer name)))
1564 (custom-mode) 1564 (custom-mode)
1565 (widget-insert "\ 1565 (widget-insert (format "\
1566Square brackets show active fields; type RET or click mouse-1 1566%s buttons; type RET or click mouse-1
1567on an active field to invoke its action. 1567on a button to invoke its action.
1568Invoke [+] below to expand a group, and [-] to collapse an expanded group.\n") 1568Invoke [+] to expand a group, and [-] to collapse an expanded group.\n"
1569 (if custom-raised-buttons
1570 "`Raised' text indicates"
1571 "Square brackets indicate")))
1572
1573
1569 (if custom-browse-only-groups 1574 (if custom-browse-only-groups
1570 (widget-insert "\ 1575 (widget-insert "\
1571Invoke the [Group] button below to edit that item in another window.\n\n") 1576Invoke the [Group] button below to edit that item in another window.\n\n")