changeset 47298:c6dddb2746ee

* emacs-lisp/cl-indent.el (extended-loop-p): Doc fix. * emacs-lisp/find-func.el (find-function-recenter-line): Add custom type. Doc fix.
author John Paul Wallington <jpw@pobox.com>
date Sat, 07 Sep 2002 06:45:43 +0000
parents b090d25cc769
children 9c81bdbbbc0e
files lisp/ChangeLog lisp/emacs-lisp/cl-indent.el lisp/emacs-lisp/find-func.el
diffstat 3 files changed, 11 insertions(+), 3 deletions(-) [+]
line wrap: on
line diff
--- 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  <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.
--- 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)
--- 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")