mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-06-29 14:30:34 +02:00
Unknown files print as (unknown file) in disassembler
* module/system/vm/disassembler.scm (disassemble-buffer): Print unknown files as "(unknown file)".
This commit is contained in:
parent
321c32dc9d
commit
1b1c912544
1 changed files with 1 additions and 1 deletions
|
@ -335,7 +335,7 @@ address of that offset."
|
|||
((< pc addr) (lp sources))
|
||||
((= pc addr)
|
||||
(format #f "~a:~a:~a"
|
||||
(source-file source)
|
||||
(or (source-file source) "(unknown file)")
|
||||
(source-line-for-user source)
|
||||
(source-column source)))
|
||||
(else #f)))))))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue