From: David Vázquez Date: Sun, 7 Jul 2013 12:08:23 +0000 (+0200) Subject: Remove *newline* variable X-Git-Url: http://repo.macrolet.net/gitweb/?p=jscl.git;a=commitdiff_plain;h=9a76035e648e67afaa118107fe86deaa0d85527f Remove *newline* variable --- diff --git a/src/print.lisp b/src/print.lisp index 17c4693..8cb36bd 100644 --- a/src/print.lisp +++ b/src/print.lisp @@ -283,7 +283,7 @@ ((char= next #\~) (concatf res "~")) ((char= next #\%) - (concatf res *newline*)) + (concatf res (string #\newline))) ((char= next #\*) (pop arguments)) (t diff --git a/src/utils.lisp b/src/utils.lisp index d380e4c..6ab351d 100644 --- a/src/utils.lisp +++ b/src/utils.lisp @@ -18,9 +18,6 @@ (/debug "loading utils.lisp!") -(defvar *newline* " -") - (defmacro concatf (variable &body form) `(setq ,variable (concat ,variable (progn ,@form))))