Fix incorrectly cons'd token source
This commit is contained in:
parent
dd3fe5369d
commit
2b0bcecc66
1 changed files with 1 additions and 1 deletions
|
@ -146,7 +146,7 @@ reading immediately. Should be a subset of *SPECIAL-TOKEN-CHARS*.")
|
||||||
(in-comment-p nil)
|
(in-comment-p nil)
|
||||||
(line 1)
|
(line 1)
|
||||||
(column 0)
|
(column 0)
|
||||||
(token-source (cons source 0)))
|
(token-source (cons source (cons 1 0))))
|
||||||
(labels
|
(labels
|
||||||
((next-token ()
|
((next-token ()
|
||||||
(push (text-to-token (copy-seq token-text-buffer) token-source) tokens)
|
(push (text-to-token (copy-seq token-text-buffer) token-source) tokens)
|
||||||
|
|
Loading…
Add table
Reference in a new issue