emacs-bug-tracker
[Top][All Lists]
Advanced

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

bug#62887: closed ([PATCH] A small supplement and a typo fix for doc/lis


From: GNU bug Tracking System
Subject: bug#62887: closed ([PATCH] A small supplement and a typo fix for doc/lispref)
Date: Tue, 18 Apr 2023 12:08:01 +0000

Your message dated Tue, 18 Apr 2023 15:06:58 +0300
with message-id <83v8ht8kd9.fsf@gnu.org>
and subject line Re: bug#62887: [PATCH] A small supplement and a typo fix for 
doc/lispref
has caused the debbugs.gnu.org bug report #62887,
regarding [PATCH] A small supplement and a typo fix for doc/lispref
to be marked as done.

(If you believe you have received this mail in error, please contact
help-debbugs@gnu.org.)


-- 
62887: https://debbugs.gnu.org/cgi/bugreport.cgi?bug=62887
GNU Bug Tracking System
Contact help-debbugs@gnu.org with problems
--- Begin Message --- Subject: [PATCH] A small supplement and a typo fix for doc/lispref Date: Sun, 16 Apr 2023 18:37:09 +0000
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.

Attachment: 0001-A-small-supplement-and-a-typo-fix-for-doc-lispref.patch
Description: 0001-A-small-supplement-and-a-typo-fix-for-doc-lispref.patch


--- End Message ---
--- Begin Message --- Subject: Re: bug#62887: [PATCH] A small supplement and a typo fix for doc/lispref Date: Tue, 18 Apr 2023 15:06:58 +0300
> From: Shynur Xie <one.last.kiss@outlook.com>
> Date: Sun, 16 Apr 2023 18:37:09 +0000
> msip_labels: 
> 
> 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.

Thanks, fixed on the emacs-29 release branch.

Btw, you have now exhausted the amount of changes we can accept from
you without copyright assignment.  Would you like to start your
assignment process at this time, so that we could keep accepting your
contributions in the future?


--- End Message ---

reply via email to

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