Function: opascal-open-group-indent
opascal-open-group-indent is a byte-compiled function defined in
opascal.el.gz.
Signature
(opascal-open-group-indent TOKEN LAST-TOKEN &optional OFFSET)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-open-group-indent (token last-token &optional offset)
;; Returns the indent relative to an unmatched ( or [.
(when (eq 'open-group (opascal-token-kind token))
(if last-token
(opascal-indent-of last-token offset)
;; There is nothing following the ( or [. Indent from its line.
(opascal-stmt-line-indent-of token opascal-indent-level))))