GNU bug report logs -
#62887
[PATCH] A small supplement and a typo fix for doc/lispref
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
1. Supplement for doc/lispref/customize.texi (Defining Customization
Groups): Faces are also stored in the `custom-group' property.
Original:
The variables and subgroups of a group are stored in the custom-group
property of the group's symbol. ...... The value of that property is a
list of pairs whose car is the variable or subgroup symbol and the cdr
is either custom-variable or custom-group.
Updated:
The variables, faces, and subgroups of a group are stored in the
custom-group property of the group's symbol. ...... The value of that
property is a list of pairs whose car is the variable, face, or
subgroup symbol and the cdr is either custom-variable, custom-face, or
custom-group.
Reason:
```
(defgroup shynur/groupA ()
"")
(defface shynur/groupA-face
()
""
:group 'shynur/groupA)
(get 'shynur/groupA 'custom-group)
;; => ((shynur/groupA-face custom-face))
```
_____________________________________________________________________
2. Fix typo for doc/lispref/loading.texi (Emacs Dynamic Modules): Fix
typo.
Original:
......, if the use typed C-g during the initialization.
Fixed:
......, if the user typed C-g during the initialization.
[0001-A-small-supplement-and-a-typo-fix-for-doc-lispref.patch (application/octet-stream, attachment)]
This bug report was last modified 2 years and 32 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.