summaryrefslogtreecommitdiff
path: root/libguile/guile-snarf-docs.in
Commit message (Collapse)AuthorAgeFilesLines
* Revert "[build] Rewrite guile-func-name-check in Scheme, adding features."Andy Wingo2010-08-271-1/+1
| | | | | | | | | | | | | This reverts commit 6832604efa0f175a70be700624c365547fb27878. Not only does this fail on a fresh build due to a lack of "guile", but even if it did have its Makefile fixed, it would take too long to run, because the rest of Guile isn't compiled. The right thing is to avoid invoking Guile until after at least psyntax and boot-9 have been compiled. This commit can be reinstated if we move doc snarfing to a phase that happens after module/ is compiled.
* [build] Rewrite guile-func-name-check in Scheme, adding features.Thien-Thi Nguyen2010-08-261-1/+1
| | | | | | | * libguile/guile-func-name-check: Rewrite in Scheme; add inhibition directives, string-literal handling, failureful exit on error. * libguile/guile-snarf-docs.in: Use ‘@top_builddir@/meta/guile’. * libguile/pairs.c: Add guile-func-name-check inhibition directive.
* [build] Refine libguile/*.doc snarfing.Thien-Thi Nguyen2010-08-261-7/+49
| | | | | | | | | * libguile/guile-snarf-docs.in: Rewrite to incorporate all three phases of snarfing: func-name check, cpp, tokenization. Also, require/check new command-line syntax. * libguile/Makefile.am (AM_V_FILTER): Delete var. (AM_V_FILTER_, AM_V_FILTER_0): Likewise. (.c.doc): Run ./guile-snarf-docs; use new command-line syntax.
* Change Guile license to LGPLv3+Neil Jerram2009-06-171-11/+11
| | | | | | | | | | (Not quite finished, the following will be done tomorrow. module/srfi/*.scm module/rnrs/*.scm module/scripts/*.scm testsuite/*.scm guile-readline/* )
* merge from 1.8 branchKevin Ryde2006-04-171-1/+1
|
* The FSF has a new address.Marius Vollmer2005-05-231-2/+2
|
* * alist.c, arbiters.c, async.h, backtrace.h, boolean.c, chars.c,Martin Grabmüller2001-07-191-1/+1
| | | | | | | | | | | | | | chars.h, continuations.h, debug-malloc.h, dynl.c, feature.c, feature.h, filesys.h, fluids.h, fports.h, gc_os_dep.c, gdb_interface.h, gh_eval.c, gh_funcs.c, gh_io.c, gh_list.c, gh_predicates.c, gsubr.c, gsubr.h, guardians.h, guile-func-name-check.in, guile-snarf-docs-texi.in, guile-snarf-docs.in, guile-snarf.awk.in, guile-snarf.in, hashtab.h, iselect.h, keywords.h, lang.c, list.h, load.h, objprop.c, objprop.h, options.c, options.h, random.h, regex-posix.h, root.c, root.h, script.c, snarf.h, stackchk.c, strerror.c, strop.h, strports.h, threads.h, values.c, values.h, version.c, version.h: Updated copyright notice.
* * snarf.h (SCM_SNARF_DOCS): change the "grammar" slightly.Michael Livshin2001-06-251-7/+1
| | | | | | | | | | | | | * guile-snarf-docs.in, guile-snarf-docs-texi.in: rewrite & simplify. * eval.c: all hash signs are in column 0. * Makefile.am (guile_filter_doc_snarfage): build using c-tokenize.c, not filter-doc-snarfage.c. rearrange snarfing dependencies a bit. * c-tokenize.lex: new file.
* * guile-snarf-docs.in, guile-snarf-docs-texi.in,Michael Livshin2001-05-311-0/+32
filter-doc-snarfage.c: new files. * Makefile.am: add stuff to [build,] use and distribute guile-snarf-docs, guile-snarf-docs-texi, guile_filter_doc_snarfage. * guile-snarf.in: grok the new snarf output. * snarf.h: make the output both texttools- and `read'-friendly. * guile-doc-snarf.in (bindir): reimplement in terms of guile-snarf and guile-snarf-docs. (should also deprecate, I guess. maybe not).