diff options
Diffstat (limited to 'src/interp/vmlisp.lisp')
-rw-r--r-- | src/interp/vmlisp.lisp | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/src/interp/vmlisp.lisp b/src/interp/vmlisp.lisp index 03ab0277..2f57c6ac 100644 --- a/src/interp/vmlisp.lisp +++ b/src/interp/vmlisp.lisp @@ -115,9 +115,6 @@ (defmacro exit (&rest value) `(return-from seq ,@value)) -(defmacro fetchchar (x i) - `(char ,x ,i)) - (defmacro greaterp (&rest args) `(> ,@args)) |