1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-06-09 13:30:26 +02:00

*** empty log message ***

This commit is contained in:
Jim Blandy 1997-05-27 23:17:46 +00:00
parent f255378e9a
commit 737c9113fe
4 changed files with 49 additions and 1 deletions

View file

@ -1,3 +1,8 @@
Tue May 27 22:47:52 1997 Tim Pierce <twp@twp.tezcat.com>
* configure.in: Check for presence of regcomp.
* configure: Regenerated.
Mon May 26 12:14:20 1997 Jim Blandy <jimb@floss.cyclic.com>
* COPYING: New address for FSF.

22
NEWS
View file

@ -4,8 +4,28 @@ See the end for copying conditions.
Please send Guile bug reports to bug-guile@prep.ai.mit.edu.
Changes since Guile 1.1:
Changes in Guile 1.2:
[[trim out any sections we don't need]]
* Changes to the distribution
* Changes to the procedure for linking libguile with your programs
* Changes to Scheme functions
** Guile has regular expression support again. Guile 1.0 included
functions for matching regular expressions, based on the Rx library.
In Guile 1.1, the Guile/Rx interface was removed to simplify the
distribution, and thus Guile had no regular expression support. Guile
1.2 now adds back the most commonly used functions, and supports all
of SCSH's regular expression functions. They are:
*** [[get docs from Tim?]]
* Changes to the gh_ interface
* Changes to the scm_ interface
Changes in Guile 1.1 (Fri May 16 1997):

View file

@ -1,3 +1,9 @@
Tue May 27 22:48:14 1997 Tim Pierce <twp@twp.tezcat.com>
* regex.scm: New file.
* Makefile.am (subpkgdata_DATA): Add regex.scm.
* Makefile.in: Regenerated.
Mon May 26 17:24:48 1997 Jim Blandy <jimb@totoro.cyclic.com>
* COPYING, boot-9.scm, debug.scm, emacs.scm, expect.scm, gtcl.scm,

View file

@ -1,3 +1,20 @@
Tue May 27 22:47:31 1997 Tim Pierce <twp@twp.tezcat.com>
Add support for POSIX regular expressions.
* 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.)
Mon May 26 18:51:29 1997 Jim Blandy <jimb@floss.cyclic.com>
* fports.c (print_pipe_port): New function.