summaryrefslogtreecommitdiff
path: root/libguile/debug.h
diff options
context:
space:
mode:
authorMarius Vollmer <mvo@zagadka.de>2001-05-25 00:17:54 +0000
committerMarius Vollmer <mvo@zagadka.de>2001-05-25 00:17:54 +0000
commit29067b9dca63a019b1d8997d2a6632b5660cec82 (patch)
tree2390c0496e670b43bcfbd3ccbbd3bd13201329f2 /libguile/debug.h
parent863e833bc68d87b914c0446b4ad0f3b0833b4b9c (diff)
downloadguile-29067b9dca63a019b1d8997d2a6632b5660cec82.tar.gz
* eval.c (scm_debug_opts): New option `show-file-name'.
* debug.h (SCM_SHOW_FILE_NAME): New. * debug.h (scm_lookup_cstr, scm_lookup_soft, scm_evstr): Prototypes removed since there's no definition for these functions.
Diffstat (limited to 'libguile/debug.h')
-rw-r--r--libguile/debug.h6
1 files changed, 2 insertions, 4 deletions
diff --git a/libguile/debug.h b/libguile/debug.h
index 2ee0e777c..d0f78a55e 100644
--- a/libguile/debug.h
+++ b/libguile/debug.h
@@ -84,7 +84,8 @@ extern scm_option_t scm_debug_opts[];
#define SCM_BACKTRACE_P scm_debug_opts[10].val
#define SCM_DEVAL_P scm_debug_opts[11].val
#define SCM_STACK_LIMIT scm_debug_opts[12].val
-#define SCM_N_DEBUG_OPTIONS 13
+#define SCM_SHOW_FILE_NAME scm_debug_opts[13].val
+#define SCM_N_DEBUG_OPTIONS 14
extern SCM (*scm_ceval_ptr) (SCM exp, SCM env);
@@ -186,9 +187,6 @@ extern scm_bits_t scm_tc16_memoized;
-extern SCM * scm_lookup_cstr (char *str, int len, SCM env);
-extern SCM * scm_lookup_soft (SCM var, SCM genv);
-extern SCM scm_evstr (char *str);
extern SCM scm_eval_string (SCM str);
extern int scm_ready_p (void);
extern void debug_print (SCM obj);