# HG changeset patch # User John Paul Wallington # Date 1031381143 0 # Node ID c6dddb2746ee620721d9d38285fa06d283abda12 # Parent b090d25cc7695f1112cbec076340f987aed9001c * emacs-lisp/cl-indent.el (extended-loop-p): Doc fix. * emacs-lisp/find-func.el (find-function-recenter-line): Add custom type. Doc fix. diff -r b090d25cc769 -r c6dddb2746ee lisp/ChangeLog --- a/lisp/ChangeLog Fri Sep 06 20:45:41 2002 +0000 +++ b/lisp/ChangeLog Sat Sep 07 06:45:43 2002 +0000 @@ -1,3 +1,10 @@ +2002-09-07 John Paul Wallington + + * 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 * menu-bar.el (menu-bar-make-mm-toggle): New macro. diff -r b090d25cc769 -r c6dddb2746ee lisp/emacs-lisp/cl-indent.el --- a/lisp/emacs-lisp/cl-indent.el Fri Sep 06 20:45:41 2002 +0000 +++ b/lisp/emacs-lisp/cl-indent.el Sat Sep 07 06:45:43 2002 +0000 @@ -108,7 +108,7 @@ (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) diff -r b090d25cc769 -r c6dddb2746ee lisp/emacs-lisp/find-func.el --- a/lisp/emacs-lisp/find-func.el Fri Sep 06 20:45:41 2002 +0000 +++ b/lisp/emacs-lisp/find-func.el Sat Sep 07 06:45:43 2002 +0000 @@ -97,8 +97,9 @@ (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")