Mercurial > emacs
changeset 48272:8555178ad8a0
(custom-handle-all-keywords): Fix arg passed to custom-add-to-group.
author | Markus Rost <rost@math.uni-bielefeld.de> |
---|---|
date | Wed, 13 Nov 2002 02:26:39 +0000 |
parents | 72cb4aac550e |
children | f3962ce34a5f |
files | lisp/custom.el |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/custom.el Tue Nov 12 22:49:31 2002 +0000 +++ b/lisp/custom.el Wed Nov 13 02:26:39 2002 +0000 @@ -396,7 +396,7 @@ "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))