chiark / gitweb /
src/final.lisp, src/frontend.lisp: Compile methods before dumping.
[sod] / src / parser / streams-proto.lisp
index bcce02a6ce270e742a1545b32623a0626778b811..d21b1090cadd4e046303c4f9e24c4fe6002445cc 100644 (file)
@@ -34,11 +34,11 @@ (defgeneric stream-pathname (stream)
    "Returns the pathname of the file that STREAM is open on.
 
    If STREAM is open on a file, then return the pathname of that file.
-   Otherwise return NIL.")
+   Otherwise return nil.")
 
   ;; Provide some default methods.  Most streams don't have a pathname.
   ;; File-based streams provide a pathname, but it's usually been merged with
-  ;; *DEFAULT-PATHNAME-DEFAULTS* or some such, which has made it absolute,
+  ;; `*default-pathname-defaults*' or some such, which has made it absolute,
   ;; which isn't ideal.  We'll hack around this in more useful classes later.
   (:method ((stream stream)) nil)
   (:method ((stream file-stream)) (pathname stream)))