# HG changeset patch # User Stefan Monnier # Date 1079968621 0 # Node ID 3c18d4160cc6e5255fe654414907d07c768fecda # Parent d8586f19729a6ee743a02f88a9d53c3faae6ffec (backquote-list*-macro): Use nreverse. diff -r d8586f19729a -r 3c18d4160cc6 lisp/emacs-lisp/backquote.el --- a/lisp/emacs-lisp/backquote.el Mon Mar 22 15:16:27 2004 +0000 +++ b/lisp/emacs-lisp/backquote.el Mon Mar 22 15:17:01 2004 +0000 @@ -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 ;; 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 @@ "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