summaryrefslogtreecommitdiff
path: root/libguile/regex-posix.c
AgeCommit message (Collapse)AuthorFilesLines
1997-06-07* regex-posix.c (scm_regexp_exec): Use the `start' argument ifJim Blandy1-4/+15
supplied. (Change from Tim Pierce.)
1997-05-29* regex-posix.c (scm_init_regex_posix): Register the "regex"Jim Blandy1-0/+3
feature, to help boot-9.scm decide whether to import the regex module.
1997-05-29* regex-posix.c: #include "_scm.h" before conditionally #includingJim Blandy1-1/+2
<regex.h>; the former defines HAVE_REGCOMP.
1997-05-28* regex-posix.c: #include <regex.h> conditionally, so the file isJim Blandy1-0/+8
CPP'able (for dependency scanning) even on systems that don't have a <regex.h> header.
1997-05-27Add support for POSIX regular expressions.Jim Blandy1-0/+229
* regex-posix.c, regex-posix.h: New files. (Some code is taken liberally from rx/rgx.c in the old Guile dist.) * init.c: Include regex-posix.h. (scm_boot_guile_1): Call scm_init_regex_posix. * Makefile.am (EXTRA_libguile_la_SOURCES, modinclude_HEADERS): Add regex-posix.[ch] sources. * Makefile.in: Regenerated. * scmconfig.h.in: Add HAVE_REGCOMP macro. (automake is supposed to do this automatically? It didn't for me, bleh.)