This is the mail archive of the guile@cygnus.com mailing list for the guile project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]

Re: application init files


sounds like you need libguile/read.c and its minimal support.  have you
looked at the source?  below is its include list.  perhaps you could
experiment w/ removing genio and eval.

i think the point is that we're already dealing w/ a library.  the
question is how efficient is its partitioning.  (i must admit, it's not
a question that i think deserves too much manual study; i guess i would
appreciate pointers to source-code analysis systems, preferably free.)

regards,
thi

------------------------------------------------------------------------------
#include "extchrs.h"
#include <stdio.h>
#include "_scm.h"
#include "chars.h"
#include "genio.h"
#include "eval.h"
#include "unif.h"
#include "mbstrings.h"
#include "kw.h"
#include "alist.h"
#include "srcprop.h"
#include "hashtab.h"
#include "hash.h"

#include "read.h"