From 340a877098a7a662fa39872b5bae6f46e840a797 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Sun, 12 Sep 1999 03:52:11 +0000 Subject: [PATCH] *** empty log message *** --- NEWS | 4 ++-- RELEASE | 2 +- libguile/ChangeLog | 9 +++++++++ 3 files changed, 12 insertions(+), 3 deletions(-) diff --git a/NEWS b/NEWS index 8028fce4a..7624a32e3 100644 --- a/NEWS +++ b/NEWS @@ -96,9 +96,9 @@ Return a new port with the associated print state PRINT-STATE. Return the print state associated with this port if it exists, otherwise return #f. -*** New function: directory? OBJECT +*** New function: directory-stream? OBJECT -Returns a boolean indicating whether OBJECT is a directory port as +Returns true iff OBJECT is a directory stream --- the sort of object returned by `opendir'. * Changes to the scm_ interface diff --git a/RELEASE b/RELEASE index a8d701609..56dce23fd 100644 --- a/RELEASE +++ b/RELEASE @@ -83,7 +83,7 @@ Spiffing checklist: + Check for any [[incomplete]] sections of NEWS. + Fact-check INSTALL. * Make sure the downloading addressess and filenames in README are - current. + current. (But don't bump the version number yet. We do that below.) * Check that the versions of aclocal, automake, autoconf, and autoheader in your PATH match those given in README. Note that the `make dist' process always invokes these tools, even when all the diff --git a/libguile/ChangeLog b/libguile/ChangeLog index d3e99ea44..713a8e878 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -15,6 +15,15 @@ 1999-09-11 Jim Blandy + Change the name of the objects returned by OPENDIR from + "directory" to "directory stream". A predicate named "directory?" + would be confusing. + * filesys.c (scm_directory_stream_p): Renamed from scm_directory_p. + At the Scheme level, "directory?" -> "directory-stream?". + (scm_dir_print): Use the phrase "directory stream" in printed form. + * filesys.h (scm_directory_stream_p): Prototype renamed + accordingly. + * Makefile.am (CLEANFILES): Remove versiondat.h; that should only be removed by `make distclean', since it's generated by configure. * Makefile.in: Regenerated.