diff options
author | Eli Zaretskii <eliz@gnu.org> | 2024-01-06 13:45:33 +0200 |
---|---|---|
committer | Eli Zaretskii <eliz@gnu.org> | 2024-01-06 13:45:33 +0200 |
commit | bf7034048c16a95263e3f7c121dafbf1824ff28f (patch) | |
tree | 5cc8943a5674c1ce394cbd3c60dc50b363f23b9f /doc/emacs/custom.texi | |
parent | 466d1c98a9ef7490332469165f63a38c2b07a05d (diff) | |
download | emacs-bf7034048c16a95263e3f7c121dafbf1824ff28f.tar.gz emacs-bf7034048c16a95263e3f7c121dafbf1824ff28f.tar.bz2 emacs-bf7034048c16a95263e3f7c121dafbf1824ff28f.zip |
; * doc/emacs/custom.texi (Changing a Variable): Update example (bug#68279).
Diffstat (limited to 'doc/emacs/custom.texi')
-rw-r--r-- | doc/emacs/custom.texi | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/doc/emacs/custom.texi b/doc/emacs/custom.texi index b45e0ef953d..4bd78f3ce83 100644 --- a/doc/emacs/custom.texi +++ b/doc/emacs/custom.texi @@ -188,14 +188,15 @@ find with @kbd{M-x customize-browse}. the customization buffer: @smallexample -[Hide] Kill Ring Max: 60 +[Hide] Kill Ring Max: Integer (positive or zero): 120 [State]: STANDARD. Maximum length of kill ring before oldest elements are thrown away. @end smallexample The first line shows that the variable is named @code{kill-ring-max}, formatted as @samp{Kill Ring Max} for easier -viewing. Its value is @samp{120}. The button labeled @samp{[Hide]}, +viewing, and also shows its expected type: a positive integer or zero. +The default value is @samp{120}. The button labeled @samp{[Hide]}, if activated, hides the variable's value and state; this is useful to avoid cluttering up the customization buffer with very long values (for this reason, variables that have very long values may start out |