Function: parseclj-lex-error-p
parseclj-lex-error-p is a byte-compiled function defined in
parseclj-lex.el.
Signature
(parseclj-lex-error-p TOKEN)
Documentation
Return t if the TOKEN represents a lexing error token.
Source Code
;; Defined in ~/.emacs.d/elpa/parseclj-20231203.1905/parseclj-lex.el
(defun parseclj-lex-error-p (token)
"Return t if the TOKEN represents a lexing error token."
(eq (parseclj-lex-token-type token) :lex-error))