Function: parseclj-lex-skip-hex
parseclj-lex-skip-hex is a byte-compiled function defined in
parseclj-lex.el.
Signature
(parseclj-lex-skip-hex)
Documentation
Skip all consecutive hex digits after point.
Source Code
;; Defined in ~/.emacs.d/elpa/parseclj-20231203.1905/parseclj-lex.el
(defun parseclj-lex-skip-hex ()
"Skip all consecutive hex digits after point."
(while (and (char-after (point))
(or (<= ?0 (char-after (point)) ?9)
(<= ?a (char-after (point)) ?f)
(<= ?A (char-after (point)) ?F)))
(right-char)))