Mercurial > emacs
changeset 18371:a32f9b2c2e0c
(custom-add-parent-links): New arg INITIAL-STRING.
(custom-group-value-create): Pass that arg.
(custom-buffer-create-internal): Clarify initial documentation.
(custom-tree-group-tag): Capitalize the tag.
(custom-tree-variable-tag, custom-tree-face-tag): Likewise.
(customize-browse): Corresponding changes.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Sat, 21 Jun 1997 20:07:48 +0000 |
parents | 74558272517b |
children | 5b5261ce8db9 |
files | lisp/cus-edit.el |
diffstat | 1 files changed, 14 insertions(+), 11 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/cus-edit.el Sat Jun 21 18:51:28 1997 +0000 +++ b/lisp/cus-edit.el Sat Jun 21 20:07:48 1997 +0000 @@ -979,9 +979,10 @@ (message "Creating customization buffer...") (custom-mode) (widget-insert "This is a customization buffer. -Push RET or click mouse-2 on the word ") +Square brackets show active fields; type RET or click mouse-2 +on an active field to invoke its action. Invoke ") (widget-create 'info-link - :tag "help" + :tag "Help" :help-echo "Read the online help." "(emacs)Easy Customization") (widget-insert " for more information.\n\n") @@ -1077,7 +1078,7 @@ (custom-mode) (widget-insert "\ Invoke [+] below to expand items, and [-] to collapse items. -Invoke the [group], [face], and [option] buttons below to edit that +Invoke the [Group], [Face], and [Option] buttons below to edit that item in another window.\n\n") (let ((custom-buffer-style 'tree)) (widget-create 'custom-group @@ -1100,7 +1101,7 @@ (define-widget 'custom-tree-group-tag 'push-button "Show parent in other window when activated." - :tag "group" + :tag "Group" :action 'custom-tree-group-tag-action) (defun custom-tree-group-tag-action (widget &rest ignore) @@ -1109,7 +1110,7 @@ (define-widget 'custom-tree-variable-tag 'push-button "Show parent in other window when activated." - :tag "option" + :tag "Option" :action 'custom-tree-variable-tag-action) (defun custom-tree-variable-tag-action (widget &rest ignore) @@ -1118,7 +1119,7 @@ (define-widget 'custom-tree-face-tag 'push-button "Show parent in other window when activated." - :tag "face" + :tag "Face" :action 'custom-tree-face-tag-action) (defun custom-tree-face-tag-action (widget &rest ignore) @@ -1527,15 +1528,16 @@ (insert ", ")))) (widget-put widget :buttons buttons)))) -(defun custom-add-parent-links (widget) - "Add `Parent groups: ...' to WIDGET. -The value if non-nil if there are parents." +(defun custom-add-parent-links (widget &optional initial-string) + "Add \"Parent groups: ...\" to WIDGET if the group has parents. +The value if non-nil if any parents were found. +If INITIAL-STRING is non-nil, use that rather than \"Parent groups:\"." (let ((name (widget-value widget)) (type (widget-type widget)) (buttons (widget-get widget :buttons)) (start (point)) found) - (insert "Parent groups:") + (insert (or initial-string "Parent groups:")) (mapatoms (lambda (symbol) (let ((group (get symbol 'custom-group))) (when (assq name group) @@ -2513,7 +2515,8 @@ (if t ;;; This should test that the buffer ;;; was made to display a group. (when (eq level 1) - (if (custom-add-parent-links widget) + (if (custom-add-parent-links widget + "Go to parent group:") (insert "\n")))) ;; Create level indicator. (insert-char ?\ (* custom-buffer-indent (1- level)))