Skip to content

Commit

Permalink
Force location information in messages
Browse files Browse the repository at this point in the history
  • Loading branch information
feeley committed Oct 29, 2023
1 parent 79e5c51 commit 8b18ab6
Showing 1 changed file with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions lib/_repl.scm
Original file line number Diff line number Diff line change
Expand Up @@ -3959,10 +3959,12 @@
(##display-situation
(##exception->kind exc)
(##exception->procedure exc cont)
(and need-display-locat?
(##not source-port)
(##fx<= detail-level 0)
locat)
(if #t ;; force location information
locat
(and need-display-locat?
(##not source-port)
(##fx<= detail-level 0)
locat))
(##not pinpointed-locat?)
port)

Expand Down

0 comments on commit 8b18ab6

Please sign in to comment.