diff options
author | Eli Zaretskii <eliz@gnu.org> | 2022-05-11 16:49:15 +0300 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2022-05-11 16:49:15 +0300 |
commit | fb42001086a67a1cf47ad31c2495de4f5c6661e7 (patch) | |
tree | 624232722a76490e9ae0c2b59ff6552fccc87ddd /lisp/cus-edit.el | |
parent | 4e4c62a156f6440a9144f43875a9ad3ebfbc05d0 (diff) | |
download | emacs-fb42001086a67a1cf47ad31c2495de4f5c6661e7.tar.gz emacs-fb42001086a67a1cf47ad31c2495de4f5c6661e7.tar.bz2 emacs-fb42001086a67a1cf47ad31c2495de4f5c6661e7.zip |
; * lisp/cus-edit.el (custom-toggle-hide-all-variables): Doc fix.
Diffstat (limited to 'lisp/cus-edit.el')
-rw-r--r-- | lisp/cus-edit.el | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/lisp/cus-edit.el b/lisp/cus-edit.el index f2202563456..a7d06d5e421 100644 --- a/lisp/cus-edit.el +++ b/lisp/cus-edit.el @@ -2841,7 +2841,14 @@ try matching its doc string against `custom-guess-doc-alist'." (defvar custom--hidden-state) (defun custom-toggle-hide-all-variables () - "Toggle whether to show contents of the widgets in the current buffer." + "Hide or show details of all customizable settings in a Custom buffer. +This command is for use in a Custom buffer that shows many +customizable settings, like \"*Customize Group*\" or \"*Customize Faces*\". +It toggles the display of each of the customizable settings in the buffer +between the expanded view, where the values of the settings and the value +menus to change them are visible; and the concise view, where only the +minimal details are shown, usually the name, the doc string and little +else." (interactive) (save-excursion (goto-char (point-min)) |