From: Karl Heuer Date: Sun, 12 Apr 1998 18:12:18 +0000 (+0000) Subject: (cl-do-arglist): Intern initializes the X-Git-Tag: emacs-20.3~1589 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=cdcd5553b06a352346fe02e18de518ee46cf41db;p=emacs.git (cl-do-arglist): Intern initializes the value of keyword symbols, so don't do it again. --- diff --git a/lisp/emacs-lisp/cl-macs.el b/lisp/emacs-lisp/cl-macs.el index 59873addb46..7467b2bb5ed 100644 --- a/lisp/emacs-lisp/cl-macs.el +++ b/lisp/emacs-lisp/cl-macs.el @@ -302,11 +302,7 @@ ARGLIST allows full Common Lisp conventions." 'quote (list nil (cl-const-expr-val def))) (list 'list nil def)))))))) - (cl-push karg keys) - (if (= (aref (symbol-name karg) 0) ?:) - (progn (set karg karg) - (cl-push (list 'setq karg (list 'quote karg)) - bind-inits))))))) + (cl-push karg keys))))) (setq keys (nreverse keys)) (or (and (eq (car args) '&allow-other-keys) (cl-pop args)) (null keys) (= safety 0)