Function: gud-backward-sexp

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

Signature

(gud-backward-sexp)

Documentation

Version of backward-sexp that catches errors.

Source Code

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