1
Fork 0
mirror of https://git.savannah.gnu.org/git/guile.git synced 2025-05-20 19:50:24 +02:00

*** empty log message ***

This commit is contained in:
Jim Blandy 1999-09-11 18:51:58 +00:00
parent caeb949308
commit b142c81de4
4 changed files with 28 additions and 0 deletions

View file

@ -4,6 +4,8 @@
1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com> 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
* aclocal.m4: Regenerated with newer libtool macros.
* Makefile.am (DISTCLEANFILES): Get rid of .x files. * Makefile.am (DISTCLEANFILES): Get rid of .x files.
* Makefile.in: Regenerated. * Makefile.in: Regenerated.
(Thanks to Keisuke Nishida.) (Thanks to Keisuke Nishida.)

View file

@ -1,3 +1,10 @@
1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
* format.scm (format:format-work): Use #\tab and #\page instead of
slib:form-feed and slib:tab. (Thanks to Ceri Storey.)
* format.scm (format:abort): Call error, not slib:error.
1999-09-11 Mikael Djurfeldt <mdj@thalamus.nada.kth.se> 1999-09-11 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
* * boot-9.scm (using-readline?): New procedure: Returns #t if * * boot-9.scm (using-readline?): New procedure: Returns #t if

View file

@ -1,5 +1,11 @@
1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com> 1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
* strop.c (scm_substring_move_x): Signal an error if start1
doesn't come before end1. (Thanks to Karoly Lorentey).
* numbers.c (scm_istr2flo): Don't call SCM_INEXP without first
calling SCM_NIMP. (Thanks to Karoly Lorentey).
* version.c (scm_libguile_config_stamp): Deleted. See * version.c (scm_libguile_config_stamp): Deleted. See
corresponding change to ../ice-9/boot-9.scm. corresponding change to ../ice-9/boot-9.scm.
* version.h: Delete prototype. * version.h: Delete prototype.

View file

@ -1,3 +1,16 @@
1999-09-11 Jim Blandy <jimb@savonarola.red-bean.com>
* tests/strings.test: Add test for substring-move! argument checking.
* lib.scm (signals-error?, signals-error?*): New macro and function.
* tests/reader.test: Use them.
* tests/interp.test: Add copyright notice.
* tests/reader.test: New test file.
* tests/regexp.test: New test file.
1999-09-06 Mikael Djurfeldt <mdj@thalamus.nada.kth.se> 1999-09-06 Mikael Djurfeldt <mdj@thalamus.nada.kth.se>
* tests/interp.test: Added tests for evaluation of closure bodies. * tests/interp.test: Added tests for evaluation of closure bodies.