Function: ispell-tex-arg-end
ispell-tex-arg-end is a byte-compiled function defined in
ispell.el.gz.
Signature
(ispell-tex-arg-end &optional ARG)
Documentation
Skip across ARG number of braces.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell-tex-arg-end (&optional arg)
"Skip across ARG number of braces."
(condition-case nil
(progn
(while (looking-at "[ \t\n]*\\[") (forward-sexp))
(forward-sexp (or arg 1)))
(error
(message "Error skipping s-expressions at point %d." (point))
(beep)
(sit-for 2))))