DirectoryStream.st
changeset 1688 8a42db1eea60
parent 1664 82793bcf229c
child 1989 92b10a0e8a51
--- a/DirectoryStream.st	Tue Oct 01 16:49:25 1996 +0200
+++ b/DirectoryStream.st	Wed Oct 02 13:35:15 1996 +0200
@@ -446,7 +446,7 @@
 	__END_INTERRUPTABLE__
 
 	if (dp != NULL) {
-	    nextEntry = __MKSTRING((char *)(dp->d_name) COMMA_CON);
+	    nextEntry = __MKSTRING((char *)(dp->d_name));
 	} else {
 	    if (errno) {
 		__INST(lastErrorNumber) = __MKSMALLINT(errno);
@@ -615,5 +615,5 @@
 !DirectoryStream class methodsFor:'documentation'!
 
 version
-    ^ '$Header: /cvs/stx/stx/libbasic/DirectoryStream.st,v 1.32 1996-09-13 09:58:39 cg Exp $'
+    ^ '$Header: /cvs/stx/stx/libbasic/DirectoryStream.st,v 1.33 1996-10-02 11:31:50 cg Exp $'
 ! !