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))))
|
||||
(subseq string
|
||||
start
|
||||
(position #\Newline string :start (1+ start)))))
|
||||
(if (< start (length string))
|
||||
(position #\Newline string :start (1+ start))
|
||||
nil))))
|
||||
|
||||
(defun point-out-source (source)
|
||||
(if (null source)
|
||||
|
|
Loading…
Add table
Reference in a new issue