Commit c28cf236bd6dfb9fc736a29b38819b1606056bef

Thomas de Grivel 2018-06-15T10:36:01

lexer-in-eof -> lexer-input-ended

1
2
3
4
5
6
7
8
9
10
11
12
13
diff --git a/css-lexer.lisp b/css-lexer.lisp
index 0f8b667..9be36b4 100644
--- a/css-lexer.lisp
+++ b/css-lexer.lisp
@@ -440,7 +440,7 @@
 
 (defmethod eof-token ((lx lexer))
   (push-token lx)
-  (cond ((and (lexer-in-eof lx)
+  (cond ((and (lexer-input-ended lx)
               (= (lexer-match-start lx)
                  (fill-pointer (lexer-buffer lx))))
          (setf (lexer-eof-p lx) t)