summaryrefslogtreecommitdiff
path: root/libguile/filesys.h
diff options
context:
space:
mode:
authorJim Blandy <jimb@red-bean.com>1999-09-12 03:47:39 +0000
committerJim Blandy <jimb@red-bean.com>1999-09-12 03:47:39 +0000
commit0d03da62e3d65c60fe29d645cb62200c1359c1af (patch)
tree72b6bda4614d3bbb89e4a3f2c979f34447b240b4 /libguile/filesys.h
parent645813f5882403923698565077e31cbb9642b845 (diff)
downloadguile-0d03da62e3d65c60fe29d645cb62200c1359c1af.tar.gz
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.
Diffstat (limited to 'libguile/filesys.h')
-rw-r--r--libguile/filesys.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/libguile/filesys.h b/libguile/filesys.h
index 9aa019ac1..294cc2368 100644
--- a/libguile/filesys.h
+++ b/libguile/filesys.h
@@ -2,7 +2,7 @@
#ifndef FILESYSH
#define FILESYSH
-/* Copyright (C) 1995,1997,1998 Free Software Foundation, Inc.
+/* Copyright (C) 1995,1997,1998, 1999 Free Software Foundation, Inc.
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
@@ -66,7 +66,7 @@ extern SCM scm_rename SCM_P ((SCM oldname, SCM newname));
extern SCM scm_delete_file SCM_P ((SCM str));
extern SCM scm_mkdir SCM_P ((SCM path, SCM mode));
extern SCM scm_rmdir SCM_P ((SCM path));
-extern SCM scm_directory_p (SCM obj);
+extern SCM scm_directory_stream_p (SCM obj);
extern SCM scm_opendir SCM_P ((SCM dirname));
extern SCM scm_readdir SCM_P ((SCM port));
extern SCM scm_rewinddir SCM_P ((SCM port));