diff options
author | Juanma Barranquero <lekktu@gmail.com> | 2002-10-17 16:50:28 +0000 |
---|---|---|
committer | Juanma Barranquero <lekktu@gmail.com> | 2002-10-17 16:50:28 +0000 |
commit | 1269ae51b1ac024d81943cb8df78a3faeb9ab470 (patch) | |
tree | bf0ea4f2185a8b96019983ea7a16a5f7f17976c2 /lisp/emacs-lisp | |
parent | a62396ccb381225cfc9b2ddf806709664891b8b4 (diff) | |
download | emacs-1269ae51b1ac024d81943cb8df78a3faeb9ab470.tar.gz emacs-1269ae51b1ac024d81943cb8df78a3faeb9ab470.tar.bz2 emacs-1269ae51b1ac024d81943cb8df78a3faeb9ab470.zip |
(beginning-of-defun): Fix typo.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/lisp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/lisp.el b/lisp/emacs-lisp/lisp.el index 57e507e4f67..ad553e508e9 100644 --- a/lisp/emacs-lisp/lisp.el +++ b/lisp/emacs-lisp/lisp.el @@ -166,7 +166,7 @@ With ARG, do it that many times. Negative arg -N means move forward to Nth following beginning of defun. Returns t unless search stops due to beginning or end of buffer. -Normally a defun starts when there is an char with open-parenthesis +Normally a defun starts when there is a char with open-parenthesis syntax at the beginning of a line. If `defun-prompt-regexp' is non-nil, then a string which matches that regexp may precede the open-parenthesis, and point ends up at the beginning of the line. |