aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDave Love2003-08-20 18:48:43 +0000
committerDave Love2003-08-20 18:48:43 +0000
commit7a0e9874341845577911414a127656a403bde45f (patch)
treee0d4d18b5ab9ce95e5b540ff654d7d479094bd46
parent0cb9b63a7b9a35168c20862a7c67a1d1e12b0be3 (diff)
downloademacs-7a0e9874341845577911414a127656a403bde45f.tar.gz
emacs-7a0e9874341845577911414a127656a403bde45f.zip
(beginning-of-defun-function): Doc fix.
-rw-r--r--lisp/emacs-lisp/lisp.el5
1 files changed, 3 insertions, 2 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el
index c6ec7cf5b9e..2ca6d2a8915 100644
--- a/lisp/emacs-lisp/lisp.el
+++ b/lisp/emacs-lisp/lisp.el
@@ -157,8 +157,9 @@ normal recipe (see `beginning-of-defun'). Major modes can define this
157if defining `defun-prompt-regexp' is not sufficient to handle the mode's 157if defining `defun-prompt-regexp' is not sufficient to handle the mode's
158needs. 158needs.
159 159
160The function should go to the line on which the current defun starts, 160The function (of no args) should go to the line on which the current
161and return non-nil, or should return nil if it can't find the beginning.") 161defun starts, and return non-nil, or should return nil if it can't
162find the beginning.")
162 163
163(defun beginning-of-defun (&optional arg) 164(defun beginning-of-defun (&optional arg)
164 "Move backward to the beginning of a defun. 165 "Move backward to the beginning of a defun.