Function: parseclj-lex-whitespace

parseclj-lex-whitespace is a byte-compiled function defined in parseclj-lex.el.

Signature

(parseclj-lex-whitespace)

Documentation

Consume all consecutive white space as possible and return an :whitespace token.

Source Code

;; Defined in ~/.emacs.d/elpa/parseclj-20231203.1905/parseclj-lex.el
(defun parseclj-lex-whitespace ()
  "Consume all consecutive white space as possible and return an :whitespace token."
  (let ((pos (point)))
    (while (parseclj-lex-at-whitespace-p)
      (right-char))
    (parseclj-lex-token :whitespace
                        (buffer-substring-no-properties pos (point))
                        pos)))