Function: antlr-skip-sexps

antlr-skip-sexps is a byte-compiled function defined in antlr-mode.el.gz.

Signature

(antlr-skip-sexps COUNT)

Documentation

Skip the next COUNT balanced expressions and the comments after it.

Return position before the comments after the last expression.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/antlr-mode.el.gz
(defsubst antlr-skip-sexps (count)
  "Skip the next COUNT balanced expressions and the comments after it.
Return position before the comments after the last expression."
  (goto-char (or (ignore-errors (scan-sexps (point) count)) (point-max)))
  (prog1 (point)
    (antlr-c-forward-sws)))