diff options
author | Andy Wingo <wingo@pobox.com> | 2010-09-24 16:28:33 +0200 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2010-09-24 17:33:17 +0200 |
commit | 8cbcaaa0ae965791310058934aafe08ad719982a (patch) | |
tree | dd66031d65bb1cdfde3fb83142cad2b4eaf76381 /libguile/srcprop.h | |
parent | 6edf58538f852102a80b0fce84e85ffca3c78c96 (diff) | |
download | guile-8cbcaaa0ae965791310058934aafe08ad719982a.tar.gz |
remove srcprop.[ch] things that have to do with breakpoints
* libguile/eval.c: Mark "breakpoints", "trace", and "procnames" debug
options as obsolete. There is lots of work left to do here, though.
* libguile/srcprop.h (scm_sym_breakpoint)
(scm_c_source_property_breakpoint_p, SRCBRKP): Remove these
definitions, without replacements.
* libguile/srcprop.c: Remove all code that has to do with breakpoints.
Diffstat (limited to 'libguile/srcprop.h')
-rw-r--r-- | libguile/srcprop.h | 7 |
1 files changed, 1 insertions, 6 deletions
diff --git a/libguile/srcprop.h b/libguile/srcprop.h index 34538d012..99b848244 100644 --- a/libguile/srcprop.h +++ b/libguile/srcprop.h @@ -3,7 +3,7 @@ #ifndef SCM_SRCPROP_H #define SCM_SRCPROP_H -/* Copyright (C) 1995,1996,2000,2001, 2006, 2008, 2009 Free Software Foundation, Inc. +/* Copyright (C) 1995,1996,2000,2001, 2006, 2008, 2009, 2010 Free Software Foundation, Inc. * * This library is free software; you can redistribute it and/or * modify it under the terms of the GNU Lesser General Public License @@ -63,11 +63,9 @@ SCM_API SCM scm_sym_filename; SCM_API SCM scm_sym_copy; SCM_API SCM scm_sym_line; SCM_API SCM scm_sym_column; -SCM_API SCM scm_sym_breakpoint; -SCM_API int scm_c_source_property_breakpoint_p (SCM form); SCM_API SCM scm_make_srcprops (long line, int col, SCM fname, SCM copy, SCM plist); SCM_API SCM scm_source_property (SCM obj, SCM key); SCM_API SCM scm_set_source_property_x (SCM obj, SCM key, SCM datum); @@ -76,9 +74,6 @@ SCM_API SCM scm_set_source_properties_x (SCM obj, SCM props); SCM_API SCM scm_cons_source (SCM xorig, SCM x, SCM y); SCM_INTERNAL void scm_init_srcprop (void); -#if SCM_ENABLE_DEPRECATED == 1 -#define SRCBRKP(x) (scm_source_property_breakpoint_p (x)) -#endif #endif /* SCM_SRCPROP_H */ |