]> git.eshelyaron.com Git - emacs.git/commitdiff
(widget-alist-convert-option): Delete spurious comma.
authorRichard M. Stallman <rms@gnu.org>
Wed, 20 Jan 1999 07:11:00 +0000 (07:11 +0000)
committerRichard M. Stallman <rms@gnu.org>
Wed, 20 Jan 1999 07:11:00 +0000 (07:11 +0000)
(widget-plist-convert-option): Delete spurious comma.

lisp/wid-edit.el

index 232c2f8deb0bf0f17210adf335b36c2a3b8d27d2..d7cf8cd210bf06b31914565f6837e56c09097104 100644 (file)
@@ -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))