1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-02 08:22:22 +00:00

(cl-do-arglist): Don't add (setq :<key> ':<key>).

This commit is contained in:
Stefan Monnier 2000-03-17 19:35:23 +00:00
parent b42f693ccb
commit a29a2cd183
2 changed files with 5 additions and 8 deletions

View File

@ -1,3 +1,7 @@
2000-03-17 Stefan Monnier <monnier@cs.yale.edu>
* emacs-lisp/cl-macs.el (cl-do-arglist): Don't add (setq :<key> ':<key>).
2000-03-16 Dave Love <fx@gnu.org>
* progmodes/f90.el (f90): Put custom group under `languages', not

View File

@ -285,14 +285,7 @@ ARGLIST allows full Common Lisp conventions."
'quote
(list nil (cl-const-expr-val def)))
(list 'list nil def))))))))
(cl-push karg keys)
;; In Emacs 20.3, keyword symbols are preinitialized,
;; making this unnecessary. But let's keep it for
;; compatibility's sake.
(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)