emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 1b8b2cf61bd: Fix typo and inaccuracy in the ELisp Reference man


From: Eli Zaretskii
Subject: emacs-29 1b8b2cf61bd: Fix typo and inaccuracy in the ELisp Reference manual
Date: Tue, 18 Apr 2023 08:04:22 -0400 (EDT)

branch: emacs-29
commit 1b8b2cf61bdc29db098e8c7dd61fd5a7971c3a1e
Author: Shynur <one.last.kiss@outlook.com>
Commit: Eli Zaretskii <eliz@gnu.org>

    Fix typo and inaccuracy in the ELisp Reference manual
    
    * doc/lispref/loading.texi (Dynamic Modules): Fix a typo.
    * doc/lispref/customize.texi (Group Definitions): Faces are also
    in the 'custom-group' property of a customization group.
    (Bug#62887)
    
    Copyright-paperwork-exempt: yes
---
 doc/lispref/customize.texi | 7 ++++---
 doc/lispref/loading.texi   | 2 +-
 2 files changed, 5 insertions(+), 4 deletions(-)

diff --git a/doc/lispref/customize.texi b/doc/lispref/customize.texi
index 6015c134d21..6d5d9e0a2bc 100644
--- a/doc/lispref/customize.texi
+++ b/doc/lispref/customize.texi
@@ -264,11 +264,12 @@ have any number of prefixes.
 @end table
 
 @cindex @code{custom-group} property
-The variables and subgroups of a group are stored in the
+The variables, faces, and subgroups of a group are stored in the
 @code{custom-group} property of the group's symbol.  @xref{Symbol
 Plists}.  The value of that property is a list of pairs whose
-@code{car} is the variable or subgroup symbol and the @code{cdr} is
-either @code{custom-variable} or @code{custom-group}.
+@code{car} is the symbol of the variable or the face or the subgroup,
+and the @code{cdr} is one of the corresponding symbols
+@code{custom-variable}, @code{custom-face}, or @code{custom-group}.
 @end defmac
 
 @defopt custom-unlispify-remove-prefixes
diff --git a/doc/lispref/loading.texi b/doc/lispref/loading.texi
index 5c84ba4b1eb..d6fc4e8d636 100644
--- a/doc/lispref/loading.texi
+++ b/doc/lispref/loading.texi
@@ -1338,7 +1338,7 @@ specified @var{file} and perform the necessary 
initialization of the
 module.  This is the primitive which makes sure the module exports the
 @code{plugin_is_GPL_compatible} symbol, calls the module's
 @code{emacs_module_init} function, and signals an error if that
-function returns an error indication, or if the use typed @kbd{C-g}
+function returns an error indication, or if the user typed @kbd{C-g}
 during the initialization.  If the initialization succeeds,
 @code{module-load} returns @code{t}.  Note that @var{file} must
 already have the proper file-name extension, as this function doesn't



reply via email to

[Prev in Thread] Current Thread [Next in Thread]