* emacs-lisp/find-func.el (find-function-recenter-line): Add
custom type. Doc fix.
+2002-09-07 John Paul Wallington <jpw@shootybangbang.com>
+
+ * emacs-lisp/cl-indent.el (extended-loop-p): Doc fix.
+
+ * emacs-lisp/find-func.el (find-function-recenter-line): Add
+ custom type. Doc fix.
+
2002-09-06 Stefan Monnier <monnier@cs.yale.edu>
* menu-bar.el (menu-bar-make-mm-toggle): New macro.
(defun extended-loop-p (loop-start)
- "True if an extended loop form starta at LOOP-START."
+ "True if an extended loop form starts at LOOP-START."
(condition-case ()
(save-excursion
(goto-char loop-start)
(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 the function `center-to-window-line' for more information, and
-`find-function' and `find-variable'."
+See `find-function' and `find-variable'."
+ :type '(choice (const :tag "Center" nil)
+ integer)
:group 'find-function
:version "20.3")