summaryrefslogtreecommitdiff
path: root/libguile/debug.c
diff options
context:
space:
mode:
authorMikael Djurfeldt <djurfeldt@nada.kth.se>2000-04-21 14:16:44 +0000
committerMikael Djurfeldt <djurfeldt@nada.kth.se>2000-04-21 14:16:44 +0000
commita0599745350ad81ec4133991049cb0dba3a9c2cd (patch)
tree082a61bee36c7952266ebec608affcbbd65f1d1d /libguile/debug.c
parente415cb066601d757beb588675baa0b268926a54e (diff)
downloadguile-a0599745350ad81ec4133991049cb0dba3a9c2cd.tar.gz
* Makefile.am (DEFS): Added. automake adds -I options to DEFS,
and we don't want that. (INCLUDES): Removed all -I options except for the root source directory and the root build directory. * *.*: Change includes so that they always use the "prefixes" libguile/, qt/, guile-readline/, or libltdl/. (Thanks to Tim Mooney.)
Diffstat (limited to 'libguile/debug.c')
-rw-r--r--libguile/debug.c46
1 files changed, 23 insertions, 23 deletions
diff --git a/libguile/debug.c b/libguile/debug.c
index 237c018fc..f9db1da3d 100644
--- a/libguile/debug.c
+++ b/libguile/debug.c
@@ -48,26 +48,26 @@
#include <stdio.h>
-#include "_scm.h"
-#include "eval.h"
-#include "stackchk.h"
-#include "throw.h"
-#include "macros.h"
-#include "smob.h"
-#include "procprop.h"
-#include "srcprop.h"
-#include "alist.h"
-#include "continuations.h"
-#include "strports.h"
-#include "read.h"
-#include "feature.h"
-#include "dynwind.h"
-#include "modules.h"
-#include "ports.h"
-#include "root.h"
-
-#include "validate.h"
-#include "debug.h"
+#include "libguile/_scm.h"
+#include "libguile/eval.h"
+#include "libguile/stackchk.h"
+#include "libguile/throw.h"
+#include "libguile/macros.h"
+#include "libguile/smob.h"
+#include "libguile/procprop.h"
+#include "libguile/srcprop.h"
+#include "libguile/alist.h"
+#include "libguile/continuations.h"
+#include "libguile/strports.h"
+#include "libguile/read.h"
+#include "libguile/feature.h"
+#include "libguile/dynwind.h"
+#include "libguile/modules.h"
+#include "libguile/ports.h"
+#include "libguile/root.h"
+
+#include "libguile/validate.h"
+#include "libguile/debug.h"
/* {Run time control of the debugging evaluator}
@@ -248,8 +248,8 @@ scm_make_memoized (SCM exp, SCM env)
* - constant: SCM_IM_DISPATCH
*/
-#include "variable.h"
-#include "procs.h"
+#include "libguile/variable.h"
+#include "libguile/procs.h"
SCM_DEFINE (scm_make_gloc, "make-gloc", 1, 1, 0,
(SCM var, SCM env),
@@ -641,7 +641,7 @@ scm_init_debug ()
#endif
scm_add_feature ("debug-extensions");
-#include "debug.x"
+#include "libguile/debug.x"
}
/*