From e82e3a65e264ca43777fe6dccf8e2e166ef3d137 Mon Sep 17 00:00:00 2001 From: rtoy <rtoy> Date: Fri, 2 Jul 2004 16:29:04 +0000 Subject: [PATCH] Backquote pretty-printing was modifying its argument. Probably don't want to do that. --- code/backq.lisp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/code/backq.lisp b/code/backq.lisp index f5413ed10..723b005d0 100644 --- a/code/backq.lisp +++ b/code/backq.lisp @@ -5,7 +5,7 @@ ;;; Carnegie Mellon University, and has been placed in the public domain. ;;; (ext:file-comment - "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/backq.lisp,v 1.12 2004/01/16 03:13:09 toy Exp $") + "$Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/code/backq.lisp,v 1.13 2004/07/02 16:29:04 rtoy Exp $") ;;; ;;; ********************************************************************** ;;; @@ -261,10 +261,10 @@ (backq-unparse (car tail) t))) (push (backq-unparse (car tail)) accum))) (backq-append - (mapcan #'(lambda (el) (backq-unparse el t)) + (mapcar #'(lambda (el) (backq-unparse el t)) (cdr form))) (backq-nconc - (mapcan #'(lambda (el) (backq-unparse el :nconc)) + (mapcar #'(lambda (el) (backq-unparse el :nconc)) (cdr form))) (backq-cons (cons (backq-unparse (cadr form) nil) -- GitLab