mirror of
git://git.code.sf.net/p/sbcl/sbcl
synced 2026-09-10 07:26:40 -04:00
The position used to be reported as the point where the last successful read stopped. Now it's where the failing form "really" began, after skipping over whitespace and effectively whitespace char macro blobs.
14 lines
315 B
Common Lisp
14 lines
315 B
Common Lisp
"(in form starting at line: 11, column: 0, position: 262)" ; expect this
|
||
;;; Randomness
|
||
#|
|
||
More randomness
|
||
|#
|
||
|
||
|
||
;; It would be really nice if this reported that the
|
||
;; error occurred at the "#." but it's better than before,
|
||
;; which reported "line 1 column 0"
|
||
(macrolet ()
|
||
(defvar *foo* #.(no-such-function)))
|
||
|