sbcl.sbcl/tests/data/wonky2.lisp
Douglas Katzman bea48ddf3b Report reader error position in COMPILE-FILE more accurately.
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.
2015-04-21 11:52:15 -04:00

14 lines
315 B
Common Lisp
Raw Permalink Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

"(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)))