Make sure error printing don't get non-existent line
This commit is contained in:
parent
a94c6f4e8f
commit
08ea79f2de
1 changed files with 3 additions and 1 deletions
|
@ -8,7 +8,9 @@
|
||||||
:finally (return start))))
|
:finally (return start))))
|
||||||
(subseq string
|
(subseq string
|
||||||
start
|
start
|
||||||
(position #\Newline string :start (1+ start)))))
|
(if (< start (length string))
|
||||||
|
(position #\Newline string :start (1+ start))
|
||||||
|
nil))))
|
||||||
|
|
||||||
(defun point-out-source (source)
|
(defun point-out-source (source)
|
||||||
(if (null source)
|
(if (null source)
|
||||||
|
|
Loading…
Add table
Reference in a new issue