diff options
author | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-04-21 14:16:44 +0000 |
---|---|---|
committer | Mikael Djurfeldt <djurfeldt@nada.kth.se> | 2000-04-21 14:16:44 +0000 |
commit | a0599745350ad81ec4133991049cb0dba3a9c2cd (patch) | |
tree | 082a61bee36c7952266ebec608affcbbd65f1d1d /libguile/read.c | |
parent | e415cb066601d757beb588675baa0b268926a54e (diff) | |
download | guile-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/read.c')
-rw-r--r-- | libguile/read.c | 34 |
1 files changed, 17 insertions, 17 deletions
diff --git a/libguile/read.c b/libguile/read.c index 15924b44f..3ab736af2 100644 --- a/libguile/read.c +++ b/libguile/read.c @@ -45,22 +45,22 @@ #include <stdio.h> -#include "_scm.h" -#include "chars.h" -#include "eval.h" -#include "unif.h" -#include "keywords.h" -#include "alist.h" -#include "srcprop.h" -#include "hashtab.h" -#include "hash.h" -#include "ports.h" -#include "root.h" -#include "strings.h" -#include "vectors.h" - -#include "validate.h" -#include "read.h" +#include "libguile/_scm.h" +#include "libguile/chars.h" +#include "libguile/eval.h" +#include "libguile/unif.h" +#include "libguile/keywords.h" +#include "libguile/alist.h" +#include "libguile/srcprop.h" +#include "libguile/hashtab.h" +#include "libguile/hash.h" +#include "libguile/ports.h" +#include "libguile/root.h" +#include "libguile/strings.h" +#include "libguile/vectors.h" + +#include "libguile/validate.h" +#include "libguile/read.h" @@ -785,7 +785,7 @@ scm_init_read () SCM_CDRLOC (scm_sysintern ("read-hash-procedures", SCM_EOL)); scm_init_opts (scm_read_options, scm_read_opts, SCM_N_READ_OPTIONS); -#include "read.x" +#include "libguile/read.x" } /* |