1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-15 10:30:25 -08:00

(custom-handle-all-keywords): Fix arg passed to custom-add-to-group.

This commit is contained in:
Markus Rost 2002-11-13 02:27:21 +00:00
parent c2fd1f35e9
commit 9b6098b97d
2 changed files with 6 additions and 1 deletions

View file

@ -396,7 +396,7 @@ If no such group is found, return nil."
"For customization option SYMBOL, handle keyword arguments ARGS.
Third argument TYPE is the custom option type."
(unless (memq :group args)
(custom-add-to-group (custom-current-group) symbol 'custom-face))
(custom-add-to-group (custom-current-group) symbol type))
(while args
(let ((arg (car args)))
(setq args (cdr args))