Function: hs-c-like-adjust-block-beginning
hs-c-like-adjust-block-beginning is a byte-compiled function defined
in hideshow.el.gz.
Signature
(hs-c-like-adjust-block-beginning INITIAL)
Documentation
Adjust INITIAL, the buffer position after hs-block-start-regexp.
Actually, point is never moved; a new position is returned that is
the end of the C-function header. This adjustment function is meant
to be assigned to hs-adjust-block-beginning for C-like modes.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/hideshow.el.gz
;; This function is not used anymore (Bug#700).
(defun hs-c-like-adjust-block-beginning (initial)
"Adjust INITIAL, the buffer position after `hs-block-start-regexp'.
Actually, point is never moved; a new position is returned that is
the end of the C-function header. This adjustment function is meant
to be assigned to `hs-adjust-block-beginning' for C-like modes."
(save-excursion
(goto-char (1- initial))
(forward-comment (- (buffer-size)))
(point)))