Mercurial > emacs
comparison lisp/emacs-lisp/lisp.el @ 52287:aece5dd1efda
(beginning-of-defun-function): Doc fix.
author | Dave Love <fx@gnu.org> |
---|---|
date | Wed, 20 Aug 2003 18:48:43 +0000 |
parents | c27a29e35a85 |
children | 695cf19ef79e |
comparison
equal
deleted
inserted
replaced
52286:2c851f739011 | 52287:aece5dd1efda |
---|---|
155 This is used to find the beginning of the defun instead of using the | 155 This is used to find the beginning of the defun instead of using the |
156 normal recipe (see `beginning-of-defun'). Major modes can define this | 156 normal recipe (see `beginning-of-defun'). Major modes can define this |
157 if defining `defun-prompt-regexp' is not sufficient to handle the mode's | 157 if defining `defun-prompt-regexp' is not sufficient to handle the mode's |
158 needs. | 158 needs. |
159 | 159 |
160 The function should go to the line on which the current defun starts, | 160 The function (of no args) should go to the line on which the current |
161 and return non-nil, or should return nil if it can't find the beginning.") | 161 defun starts, and return non-nil, or should return nil if it can't |
162 find 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. |
165 With ARG, do it that many times. Negative arg -N | 166 With ARG, do it that many times. Negative arg -N |
166 means move forward to Nth following beginning of defun. | 167 means move forward to Nth following beginning of defun. |