Function: ff-set-point-accordingly

ff-set-point-accordingly is a byte-compiled function defined in find-file.el.gz.

Signature

(ff-set-point-accordingly)

Documentation

Find the function specified in ff-function-name.

That name was previously determined by ff-which-function-are-we-in.

Source Code

;; Defined in /usr/src/emacs/lisp/find-file.el.gz
;; bind with (setq ff-post-load-hook 'ff-set-point-accordingly)
;;
(defun ff-set-point-accordingly ()
  "Find the function specified in `ff-function-name'.
That name was previously determined by `ff-which-function-are-we-in'."
  (if ff-function-name
      (progn
        (goto-char (point-min))
        (search-forward ff-function-name nil t))))