]> git.eshelyaron.com Git - emacs.git/commitdiff
* emacs-lisp/cl-indent.el (extended-loop-p): Doc fix.
authorJohn Paul Wallington <jpw@pobox.com>
Sat, 7 Sep 2002 06:45:43 +0000 (06:45 +0000)
committerJohn Paul Wallington <jpw@pobox.com>
Sat, 7 Sep 2002 06:45:43 +0000 (06:45 +0000)
* emacs-lisp/find-func.el (find-function-recenter-line): Add
custom type.  Doc fix.

lisp/ChangeLog
lisp/emacs-lisp/cl-indent.el
lisp/emacs-lisp/find-func.el

index 038ee40affd2641f2e7d5296912f51095f5b1f65..585fd86402c302a875247e930b13e6e09e3869be 100644 (file)
@@ -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.
index 2ed810951d9a62a635448f3dec6f30405c716cdd..3bdb3382bc150615a9cb81509891ba0093176f9b 100644 (file)
@@ -108,7 +108,7 @@ If nil, indent backquoted lists as data, i.e., like quoted lists."
 
 
 (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)
index 1225333ed26201fd883324a4990a459fb24f3fcb..6e491409233d1c07bc27b70db7b6df26f9bb5510 100644 (file)
@@ -97,8 +97,9 @@ default."
 (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")