# HG changeset patch # User Richard M. Stallman # Date 916816260 0 # Node ID 9fd3f3cc78c1b38fece9a0c089fefb87b7a6825a # Parent 6ecfb6510c3b9094c67ee62b3a10517a372cecea (widget-alist-convert-option): Delete spurious comma. (widget-plist-convert-option): Delete spurious comma. diff -r 6ecfb6510c3b -r 9fd3f3cc78c1 lisp/wid-edit.el --- a/lisp/wid-edit.el Wed Jan 20 03:24:48 1999 +0000 +++ b/lisp/wid-edit.el Wed Jan 20 07:11:00 1999 +0000 @@ -3324,7 +3324,7 @@ (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 @@ (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))