aboutsummaryrefslogtreecommitdiff
path: root/src/interp/preparse.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/preparse.lisp')
-rw-r--r--src/interp/preparse.lisp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/interp/preparse.lisp b/src/interp/preparse.lisp
index 1285de92..b3279119 100644
--- a/src/interp/preparse.lisp
+++ b/src/interp/preparse.lisp
@@ -353,8 +353,8 @@
(defun PARSEPILES (LOCS LINES)
"Add parens and semis to lines to aid parsing."
(mapl #'add-parens-and-semis-to-line
- (NCONC LINES '(" "))
- (nconc locs '(nil)))
+ (|append!| LINES '(" "))
+ (|append!| locs '(nil)))
LINES)
(defun add-parens-and-semis-to-line (slines slocs)