diff options
| author | Richard M. Stallman | 2005-12-23 01:21:16 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2005-12-23 01:21:16 +0000 |
| commit | b758ae9ad97fdc1b2750b9ec8801aa85a4e6dbfc (patch) | |
| tree | b067ce7e5f6017f471c8e3f2fb3dabe403453002 | |
| parent | 0a57ffed62a2fc5d24cc654f02b40be80d104c09 (diff) | |
| download | emacs-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/ChangeLog | 13 | ||||
| -rw-r--r-- | lisp/cus-edit.el | 19 |
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 @@ | |||
| 1 | 2005-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 | |||
| 6 | 2005-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 | |||
| 1 | 2005-12-22 Stefan Monnier <monnier@iro.umontreal.ca> | 14 | 2005-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. |
| 1434 | Editing a setting changes only the text in the buffer. | 1434 | Editing a setting changes only the text in the buffer. |
| 1435 | Use the setting's State button to set it or save changes in it. | 1435 | Use the setting's State button to set it or save changes in it. |
| 1436 | Saving a change normally works by editing your Emacs init file. | 1436 | Saving a change normally works by editing your Emacs init file. |
| 1437 | See " | 1437 | See " |
| 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 "\ |
| 1566 | Square brackets show active fields; type RET or click mouse-1 | 1566 | %s buttons; type RET or click mouse-1 |
| 1567 | on an active field to invoke its action. | 1567 | on a button to invoke its action. |
| 1568 | Invoke [+] below to expand a group, and [-] to collapse an expanded group.\n") | 1568 | Invoke [+] 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 "\ |
| 1571 | Invoke the [Group] button below to edit that item in another window.\n\n") | 1576 | Invoke the [Group] button below to edit that item in another window.\n\n") |