Function: gud-forward-sexp

gud-forward-sexp is a byte-compiled function defined in gud.el.gz.

Signature

(gud-forward-sexp)

Documentation

Version of forward-sexp that catches errors.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/gud.el.gz
(defun gud-forward-sexp ()
  "Version of `forward-sexp' that catches errors."
  (condition-case nil
     (forward-sexp)
    (error t)))