Function: c-backward-to-decl-anchor
c-backward-to-decl-anchor is a byte-compiled function defined in
cc-engine.el.gz.
Signature
(c-backward-to-decl-anchor &optional LIM)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/cc-engine.el.gz
(defsubst c-backward-to-decl-anchor (&optional lim)
;; Assuming point is at a brace that opens the block of a top level
;; declaration of some kind, move to the proper anchor point for
;; that block.
;;
;; This function might do hidden buffer changes.
(unless (= (point) (c-point 'boi))
(c-beginning-of-statement-1 lim)))