aboutsummaryrefslogtreecommitdiff
path: root/src/interp/bootlex.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/bootlex.lisp')
-rw-r--r--src/interp/bootlex.lisp20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/interp/bootlex.lisp b/src/interp/bootlex.lisp
index b90cb4ba..93d6b997 100644
--- a/src/interp/bootlex.lisp
+++ b/src/interp/bootlex.lisp
@@ -154,26 +154,6 @@
; *** 3. BOOT Token Handling ***
-(defun get-BOOT-token (token)
-
- "If you have an _, go to the next line.
-If you have a . followed by an integer, get a floating point number.
-Otherwise, get a .. identifier."
-
- (if (not (|skipBlankChars|))
- nil
- (let ((token-type (|tokenLookaheadType| (|currentChar|))))
- (case token-type
- (eof (|tokenInstall| nil '*eof token |$nonblank|))
- (escape (|advanceChar!|)
- (|getIdentifier| token t))
- (argument-designator (get-argument-designator-token token))
- (id (|getIdentifier| token nil))
- (num (get-spad-integer-token token))
- (string (|getSpadString| token))
- (special-char (|getSpecial| token))
- (t (|getGliph| token token-type))))))
-
(defun get-argument-designator-token (token)
(|advanceChar!|)
(get-number-token token)