diff options
author | Richard M. Stallman <rms@gnu.org> | 1999-01-20 07:11:00 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1999-01-20 07:11:00 +0000 |
commit | 31d5543d2c659f37e86b6609d587b6b4ed712764 (patch) | |
tree | d21e86a90f01934e9e7d74ead9bec3f783671e86 /lisp/wid-edit.el | |
parent | 37f4b0339c35c09b997482af7d17f37d5e219430 (diff) | |
download | emacs-31d5543d2c659f37e86b6609d587b6b4ed712764.tar.gz |
(widget-alist-convert-option): Delete spurious comma.
(widget-plist-convert-option): Delete spurious comma.
Diffstat (limited to 'lisp/wid-edit.el')
-rw-r--r-- | lisp/wid-edit.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/wid-edit.el b/lisp/wid-edit.el index 232c2f8deb0..d7cf8cd210b 100644 --- a/lisp/wid-edit.el +++ b/lisp/wid-edit.el @@ -3324,7 +3324,7 @@ To use this type, you must define :match or :match-alternatives." (let ((key (nth 0 option))) (setq value-type (nth 1 option)) (if (listp key) - (setq key-type ,key) + (setq key-type key) (setq key-type `(const ,key)))) (setq key-type `(const ,option) value-type widget-plist-value-type)) @@ -3370,7 +3370,7 @@ To use this type, you must define :match or :match-alternatives." (let ((key (nth 0 option))) (setq value-type (nth 1 option)) (if (listp key) - (setq key-type ,key) + (setq key-type key) (setq key-type `(const ,key)))) (setq key-type `(const ,option) value-type widget-alist-value-type)) |