From 217fd4f09ea7786b205c4766e750f7011242e479 Mon Sep 17 00:00:00 2001 From: Eli Zaretskii Date: Sat, 27 Sep 2025 17:09:44 +0300 Subject: [PATCH] ; * doc/lispref/modes.texi (Defining Minor Modes): Fix last change. --- doc/lispref/modes.texi | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/doc/lispref/modes.texi b/doc/lispref/modes.texi index c5c6c10a6fa..28941647487 100644 --- a/doc/lispref/modes.texi +++ b/doc/lispref/modes.texi @@ -1861,9 +1861,10 @@ marking the @code{define-minor-mode} form as autoloaded. @item :init-value @var{init-value} This is the value to which the @var{mode} variable is initialized. Except in unusual circumstances (see below), this value must be -@code{nil}. If the mode is global (see below), and the initial value is -@code{t}, i.e., the mode is turned on by default, you should consider -forcing Emacs to run the mode function at startup, like this: +@code{nil}. If the mode is global (see below) and preloaded, and the +initial value is @code{t}, i.e., the mode is turned on by default, you +should consider forcing Emacs to run the mode function at startup, like +this: @lisp :initialize #'custom-initialize-delay