src/lexer-impl.lisp: Describe EOF as `<end-of-file>' consistently.
[sod] / src / lexer-impl.lisp
index 7e953ef..b579278 100644 (file)
@@ -44,7 +44,7 @@
 
    Usable in `format''s ~/.../ command."
   (declare (ignore colonp atsignp))
-  (cond ((null char) (write-string "<eof>" stream))
+  (cond ((null char) (write-string "<end-of-file>" stream))
        ((and (graphic-char-p char) (char/= char #\space))
         (format stream "`~C'" char))
        (t (format stream "<~(~:C~)>" char))))