mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-29 08:20:20 +02:00
(display-source): Use unmemoize-expr instead
of unmemoize. (write-frame-short/expression): Likewise.
This commit is contained in:
parent
c1f54b3dda
commit
2f843c4b7a
1 changed files with 2 additions and 2 deletions
|
@ -107,7 +107,7 @@
|
|||
(copy (source-property source 'copy)))
|
||||
(if (pair? copy)
|
||||
copy
|
||||
(unmemoize source)))))
|
||||
(unmemoize-expr source)))))
|
||||
|
||||
(define (write-state-long state)
|
||||
(let ((index (state-index state)))
|
||||
|
@ -156,7 +156,7 @@
|
|||
(cond ((source-position source)
|
||||
=> (lambda (p) (display-position p) (display ":\n"))))
|
||||
(display " ")
|
||||
(write (or copy (unmemoize source)))))
|
||||
(write (or copy (unmemoize-expr source)))))
|
||||
|
||||
(define (source-position source)
|
||||
(let ((fname (source-property source 'filename))
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue