aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1999-01-20 07:11:00 +0000
committerRichard M. Stallman1999-01-20 07:11:00 +0000
commit31d5543d2c659f37e86b6609d587b6b4ed712764 (patch)
treed21e86a90f01934e9e7d74ead9bec3f783671e86
parent37f4b0339c35c09b997482af7d17f37d5e219430 (diff)
downloademacs-31d5543d2c659f37e86b6609d587b6b4ed712764.tar.gz
emacs-31d5543d2c659f37e86b6609d587b6b4ed712764.zip
(widget-alist-convert-option): Delete spurious comma.
(widget-plist-convert-option): Delete spurious comma.
-rw-r--r--lisp/wid-edit.el4
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."
3324 (let ((key (nth 0 option))) 3324 (let ((key (nth 0 option)))
3325 (setq value-type (nth 1 option)) 3325 (setq value-type (nth 1 option))
3326 (if (listp key) 3326 (if (listp key)
3327 (setq key-type ,key) 3327 (setq key-type key)
3328 (setq key-type `(const ,key)))) 3328 (setq key-type `(const ,key))))
3329 (setq key-type `(const ,option) 3329 (setq key-type `(const ,option)
3330 value-type widget-plist-value-type)) 3330 value-type widget-plist-value-type))
@@ -3370,7 +3370,7 @@ To use this type, you must define :match or :match-alternatives."
3370 (let ((key (nth 0 option))) 3370 (let ((key (nth 0 option)))
3371 (setq value-type (nth 1 option)) 3371 (setq value-type (nth 1 option))
3372 (if (listp key) 3372 (if (listp key)
3373 (setq key-type ,key) 3373 (setq key-type key)
3374 (setq key-type `(const ,key)))) 3374 (setq key-type `(const ,key))))
3375 (setq key-type `(const ,option) 3375 (setq key-type `(const ,option)
3376 value-type widget-alist-value-type)) 3376 value-type widget-alist-value-type))