diff options
Diffstat (limited to 'src/interp/macros.lisp')
-rw-r--r-- | src/interp/macros.lisp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/interp/macros.lisp b/src/interp/macros.lisp index e431b682..69959807 100644 --- a/src/interp/macros.lisp +++ b/src/interp/macros.lisp @@ -507,7 +507,7 @@ terminals and empty or at-end files. In Common Lisp, we must assume record size (defun |breakIntoLines| (str) (let ((bol 0) (eol) (line-list nil)) (loop - (setq eol (position #\Newline str :start bol)) + (setq eol (|findChar| #\Newline str bol)) (if (null eol) (return)) (if (> eol bol) (setq line-list (cons (subseq str bol eol) line-list))) |