From: Richard M. Stallman Date: Wed, 20 Jan 1999 07:11:00 +0000 (+0000) Subject: (widget-alist-convert-option): Delete spurious comma. X-Git-Tag: emacs-20.4~815 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=31d5543d2c659f37e86b6609d587b6b4ed712764;p=emacs.git (widget-alist-convert-option): Delete spurious comma. (widget-plist-convert-option): Delete spurious comma. --- 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))