Update of /cvsroot/sbcl/sbcl/contrib/sb-posix
In directory sc8-pr-cvs8.sourceforge.net:/tmp/cvs-serv6632/contrib/sb-posix
Modified Files:
interface.lisp
Log Message:
1.0.2.26: replace *all-components* special with a local variable
* Was used only in COMPILE-TOPLEVEL where it was also bound.
Index: interface.lisp
===================================================================
RCS file: /cvsroot/sbcl/sbcl/contrib/sb-posix/interface.lisp,v
retrieving revision 1.38
retrieving revision 1.39
diff -u -d -r1.38 -r1.39
--- interface.lisp 12 Feb 2007 03:43:12 -0000 1.38
+++ interface.lisp 19 Feb 2007 11:55:52 -0000 1.39
@@ -76,7 +76,7 @@
;;; variable.
(eval-when (:compile-toplevel :load-toplevel)
(setf *c-functions-in-runtime*
- '`(#+netbsd ,@("stat" "lstat" "fstat" "readdir" "opendir"))))
+ '`(#+netbsd ,@("stat" "lstat" "fstat" "readdir" "opendir"))))
;;; filesystem access
|