Function: c-lineup-under-anchor
c-lineup-under-anchor is a byte-compiled function defined in
cc-align.el.gz.
Signature
(c-lineup-under-anchor LANGELEM)
Documentation
Line up the current line directly under the anchor position in LANGELEM.
This is like 0, except it supersedes any indentation already calculated for previous syntactic elements in the syntactic context.
Works with: Any syntactic symbol which has an anchor position.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-align.el.gz
(defun c-lineup-under-anchor (langelem)
"Line up the current line directly under the anchor position in LANGELEM.
This is like 0, except it supersedes any indentation already calculated for
previous syntactic elements in the syntactic context.
Works with: Any syntactic symbol which has an anchor position."
(save-excursion
(goto-char (c-langelem-pos langelem))
(vector (current-column))))