This is an automated email from the git hooks/post-receive script.
lloda pushed a commit to branch main
in repository guile.
The following commit(s) were added to refs/heads/main by this push:
new f9f55b9 Fix trace-calls-to-procedure
f9f55b9 is described below
commit f9f55b9ce74898d1b0a77dcc9b4aa260e5cd208d
Author: Robin Green <[email protected]>
AuthorDate: Wed May 19 16:40:16 2021 +0200
Fix trace-calls-to-procedure
Fixes #43102 and duplicate #48412.
---
module/system/vm/trace.scm | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/module/system/vm/trace.scm b/module/system/vm/trace.scm
index e9f17da..54840d8 100644
--- a/module/system/vm/trace.scm
+++ b/module/system/vm/trace.scm
@@ -73,7 +73,7 @@
(max-indent (- width 40)))
(define (apply-handler frame depth)
(print-application frame depth width prefix max-indent))
- (define (return-handler frame depth values)
+ (define (return-handler frame depth)
(print-return frame depth width prefix max-indent))
(trap-calls-to-procedure proc apply-handler return-handler))