Function: prolog-find-unmatched-paren
prolog-find-unmatched-paren is a byte-compiled function defined in
prolog.el.gz.
Signature
(prolog-find-unmatched-paren)
Documentation
Return the column of the last unmatched left parenthesis.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/prolog.el.gz
(defun prolog-find-unmatched-paren ()
"Return the column of the last unmatched left parenthesis."
(save-excursion
(goto-char (or (nth 1 (syntax-ppss)) (point-min)))
(current-column)))