aboutsummaryrefslogtreecommitdiff
path: root/src/interp/parsing.lisp
diff options
context:
space:
mode:
Diffstat (limited to 'src/interp/parsing.lisp')
-rw-r--r--src/interp/parsing.lisp4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/interp/parsing.lisp b/src/interp/parsing.lisp
index 668bf1e3..ce5a2826 100644
--- a/src/interp/parsing.lisp
+++ b/src/interp/parsing.lisp
@@ -295,10 +295,6 @@ the stack, then stack a NIL. Return the value of prod."
; (3) Line handling: Next Line, Print Next Line
; (X) Random Stuff
-(defun match-advance-keyword (str)
- (and (|matchToken| (|currentToken|) 'keyword (intern str))
- (action (|advanceToken|))))
-
(defun match-advance-special (str)
(and (|matchToken| (|currentToken|) 'special-char (character str))
(action (|advanceToken|))))