summaryrefslogtreecommitdiff
path: root/lisp
diff options
context:
space:
mode:
authorStefan Monnier <monnier@iro.umontreal.ca>2004-03-22 15:17:01 +0000
committerStefan Monnier <monnier@iro.umontreal.ca>2004-03-22 15:17:01 +0000
commit1de9630d9ba42a033a42a2466924ea98d9ba75b4 (patch)
treeb25f7a650b778a56b299fda4abd239629f7c8a05 /lisp
parent35abd1e238ff1dfa240af85e6cd2bb615945d1be (diff)
downloademacs-1de9630d9ba42a033a42a2466924ea98d9ba75b4.tar.gz
emacs-1de9630d9ba42a033a42a2466924ea98d9ba75b4.tar.bz2
emacs-1de9630d9ba42a033a42a2466924ea98d9ba75b4.zip
(backquote-list*-macro): Use nreverse.
Diffstat (limited to 'lisp')
-rw-r--r--lisp/emacs-lisp/backquote.el10
1 files changed, 8 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/backquote.el b/lisp/emacs-lisp/backquote.el
index 81e1a91f76c..6a2baeb3fe9 100644
--- a/lisp/emacs-lisp/backquote.el
+++ b/lisp/emacs-lisp/backquote.el
@@ -1,6 +1,6 @@
;;; backquote.el --- implement the ` Lisp construct
-;;; Copyright (C) 1990, 1992, 1994, 2001 Free Software Foundation, Inc.
+;; Copyright (C) 1990, 92, 1994, 2001, 2004 Free Software Foundation, Inc.
;; Author: Rick Sladkey <jrs@world.std.com>
;; Maintainer: FSF
@@ -44,6 +44,9 @@
"Like `list' but the last argument is the tail of the new list.
For example (backquote-list* 'a 'b 'c) => (a b . c)"
+ ;; The recursive solution is much nicer:
+ ;; (if list (cons first (apply 'backquote-list*-function list)) first))
+ ;; but Emacs is not very good at efficiently processing recursion.
(if list
(let* ((rest list) (newlist (cons first nil)) (last newlist))
(while (cdr rest)
@@ -58,7 +61,10 @@ For example (backquote-list* 'a 'b 'c) => (a b . c)"
"Like `list' but the last argument is the tail of the new list.
For example (backquote-list* 'a 'b 'c) => (a b . c)"
- (setq list (reverse (cons first list))
+ ;; The recursive solution is much nicer:
+ ;; (if list (list 'cons first (cons 'backquote-list*-macro list)) first))
+ ;; but Emacs is not very good at efficiently processing such things.
+ (setq list (nreverse (cons first list))
first (car list)
list (cdr list))
(if list