From 377e3f441f3f78ab0bc337b2717e5c4fc7774aca Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Thu, 2 Apr 2026 17:26:14 +0300 Subject: [PATCH] ; * doc/emacs/custom.texi (Examining): Fix last change. --- doc/emacs/custom.texi | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/doc/emacs/custom.texi b/doc/emacs/custom.texi index 477daaee83a..b73bf6b929a 100644 --- a/doc/emacs/custom.texi +++ b/doc/emacs/custom.texi @@ -869,14 +869,21 @@ way to alter the variable in future sessions is to put something in your initialization file (@pxref{Init File}). @findex setopt - If you're setting a customizable variable in your initialization -file, and you don't want to use the Customize interface, you can use -the @code{setopt} macro. For instance: + If you're setting a customizable variable, and you don't want to use +the Customize interface, you can use the @code{setopt} macro. For +instance: @example M-: (setopt fill-column 75) @key{RET} @end example +@noindent +Or, if you want to do this in your initialization file: + +@example + (setopt fill-column 75) +@end example + This works the same as @code{setq}, but if the variable has any special setter functions, they will be run automatically when using @code{setopt}. You can also use @code{setopt} on other,