Function: parseclj-lex-lookahead

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

Signature

(parseclj-lex-lookahead N)

Documentation

Return a lookahead string of N characters after point.

Source Code

;; Defined in ~/.emacs.d/elpa/parseclj-20231203.1905/parseclj-lex.el
(defun parseclj-lex-lookahead (n)
  "Return a lookahead string of N characters after point."
  (buffer-substring-no-properties (point) (min (+ (point) n) (point-max))))