Variable: find-function-recenter-line

find-function-recenter-line is a customizable variable defined in find-func.el.gz.

Value

1

Documentation

The window line-number from which to start displaying a symbol definition.

A value of nil implies center the beginning of the definition. See find-function and find-variable.

This variable was added, or its default value changed, in Emacs 20.3.

Source Code

;; Defined in /usr/src/emacs/lisp/emacs-lisp/find-func.el.gz
(defcustom find-function-recenter-line 1
  "The window line-number from which to start displaying a symbol definition.
A value of nil implies center the beginning of the definition.
See `find-function' and `find-variable'."
  :type '(choice (const :tag "Center" nil)
		 integer)
  :group 'find-function
  :version "20.3")