Mercurial > emacs
changeset 24134:9fd3f3cc78c1
(widget-alist-convert-option): Delete spurious comma.
(widget-plist-convert-option): Delete spurious comma.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Wed, 20 Jan 1999 07:11:00 +0000 |
parents | 6ecfb6510c3b |
children | daa5a963e82a |
files | lisp/wid-edit.el |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- 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))