From 084210bf9ada363e4d55f9e9ee6a9ec7fab77aa1 Mon Sep 17 00:00:00 2001 From: Rob Browning Date: Sat, 12 Apr 2003 18:41:30 +0000 Subject: [PATCH] * backtrace.c (display_backtrace_file): correct a couple of instances of "file == SCM_BOOL_F" to "SCM_FALSEP (file)" (shouldn't be comparing values directly). --- libguile/backtrace.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/libguile/backtrace.c b/libguile/backtrace.c index 5eca229b4..c051d2516 100644 --- a/libguile/backtrace.c +++ b/libguile/backtrace.c @@ -466,8 +466,8 @@ display_backtrace_file (frame, last_file, port, pstate) *last_file = file; scm_puts ("In ", port); - if (file == SCM_BOOL_F) - if (line == SCM_BOOL_F) + if (SCM_FALSEP (file)) + if (SCM_FALSEP (line)) scm_puts ("unknown file", port); else scm_puts ("current input", port);