src/lexer-impl.lisp: Rename internal `skip-until' function.
[sod] / src / lexer-impl.lisp
index 42370c0..ffd522f 100644 (file)
@@ -46,7 +46,7 @@
         (format nil "`~C'" char))
        (t (format nil "<~(~:C~)>" char))))
 
-(defun skip-until (scanner token-types &key keep-end)
+(defun %skip-until (scanner token-types &key keep-end)
   "This is the implementation of the `skip-until' parser."
   (do ((consumedp nil t))
       ((member (token-type scanner) token-types)