diff options
Diffstat (limited to 'src/interp/parsing.lisp')
-rw-r--r-- | src/interp/parsing.lisp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/interp/parsing.lisp b/src/interp/parsing.lisp index 9dfe1d02..7f923a61 100644 --- a/src/interp/parsing.lisp +++ b/src/interp/parsing.lisp @@ -211,10 +211,6 @@ the stack, then stack a NIL. Return the value of prod." (and (match-token (current-token) 'keyword (intern str)) (action (advance-token)))) -(defun match-advance-glyph (str) - (and (match-token (current-token) 'gliph (intern str)) - (action (advance-token)))) - (defun match-advance-special (str) (and (match-token (current-token) 'special-char (character str)) (action (advance-token)))) |