Function: lua--backward-up-list-noerror
lua--backward-up-list-noerror is a byte-compiled function defined in
lua-mode.el.gz.
Signature
(lua--backward-up-list-noerror)
Documentation
Safe version of lua-backward-up-list that does not signal an error.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defun lua--backward-up-list-noerror ()
"Safe version of `lua-backward-up-list' that does not signal an error."
(condition-case nil
(lua-backward-up-list)
(scan-error nil)))