diff options
author | Tom Tromey <tromey@redhat.com> | 2013-06-13 11:29:06 -0600 |
---|---|---|
committer | Tom Tromey <tromey@redhat.com> | 2013-06-13 11:29:06 -0600 |
commit | 5ccb7e7b1ea2ca7f6e45d00d839e19f22cc961da (patch) | |
tree | af9b79246f0b18d748c3e1c33b1bb1b33cf1fbe0 /lisp/emacs-lisp/cl-lib.el | |
parent | 313dfb6277b3e1ef28c7bb76e776f10168e3f0a3 (diff) | |
parent | 94fa6ec7b306b47c251f7b8b67662598027a7ff3 (diff) | |
download | emacs-5ccb7e7b1ea2ca7f6e45d00d839e19f22cc961da.tar.gz emacs-5ccb7e7b1ea2ca7f6e45d00d839e19f22cc961da.tar.bz2 emacs-5ccb7e7b1ea2ca7f6e45d00d839e19f22cc961da.zip |
merge from trunk
Diffstat (limited to 'lisp/emacs-lisp/cl-lib.el')
-rw-r--r-- | lisp/emacs-lisp/cl-lib.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/cl-lib.el b/lisp/emacs-lisp/cl-lib.el index f3bf70b0190..52f123c83ec 100644 --- a/lisp/emacs-lisp/cl-lib.el +++ b/lisp/emacs-lisp/cl-lib.el @@ -156,8 +156,8 @@ an element already on the list. ;; earlier and should have triggered them already. (with-no-warnings ,place) (setq ,place (cons ,var ,place)))) - (list 'setq place (cl-list* 'cl-adjoin x place keys))) - (cl-list* 'cl-callf2 'cl-adjoin x place keys))) + `(setq ,place (cl-adjoin ,x ,place ,@keys))) + `(cl-callf2 cl-adjoin ,x ,place ,@keys))) (defun cl--set-elt (seq n val) (if (listp seq) (setcar (nthcdr n seq) val) (aset seq n val))) |