summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorJohn Paul Wallington <jpw@pobox.com>2002-09-07 06:45:43 +0000
committerJohn Paul Wallington <jpw@pobox.com>2002-09-07 06:45:43 +0000
commitcb0fd101b90b4721a7498850235427bd890f8be7 (patch)
tree58f8d62405e680419191cd82c53a3160f8573610 /lisp/emacs-lisp
parent537b4efb6c62179624200ebd3b431f4bcc97f1c1 (diff)
downloademacs-cb0fd101b90b4721a7498850235427bd890f8be7.tar.gz
emacs-cb0fd101b90b4721a7498850235427bd890f8be7.tar.bz2
emacs-cb0fd101b90b4721a7498850235427bd890f8be7.zip
* emacs-lisp/cl-indent.el (extended-loop-p): Doc fix.
* emacs-lisp/find-func.el (find-function-recenter-line): Add custom type. Doc fix.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/cl-indent.el2
-rw-r--r--lisp/emacs-lisp/find-func.el5
2 files changed, 4 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/cl-indent.el b/lisp/emacs-lisp/cl-indent.el
index 2ed810951d9..3bdb3382bc1 100644
--- a/lisp/emacs-lisp/cl-indent.el
+++ b/lisp/emacs-lisp/cl-indent.el
@@ -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)
diff --git a/lisp/emacs-lisp/find-func.el b/lisp/emacs-lisp/find-func.el
index 1225333ed26..6e491409233 100644
--- a/lisp/emacs-lisp/find-func.el
+++ b/lisp/emacs-lisp/find-func.el
@@ -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")