From 0ace611196c784c77353350bce2df2e0d52c2e1e Mon Sep 17 00:00:00 2001 From: Brennan Vincent Date: Wed, 4 Sep 2024 15:16:46 -0400 Subject: [PATCH] Fix gbt command in gdbinit MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit In 2009 when this was written, SCM_UNDEFINED was 0x704. Now it's 0x904. Signed-off-by: Ludovic Courtès --- gdbinit | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gdbinit b/gdbinit index fdc9c759b..b15f85a90 100644 --- a/gdbinit +++ b/gdbinit @@ -200,5 +200,5 @@ define inst end define gbt - call scm_display_backtrace (scm_make_stack(0x404,0x304), scm_current_error_port (), 0x704, 0x704, 0x704) + call scm_display_backtrace (scm_make_stack(0x404,0x304), scm_current_error_port (), 0x904, 0x904) end