mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-06 06:20:55 -08:00
doc/lispref/emacs-lisp-intro.texi (count-words-in-defun): Fix bug#10544.
This commit is contained in:
parent
34a02f46dc
commit
1ef1768148
2 changed files with 6 additions and 1 deletions
|
|
@ -15012,7 +15012,7 @@ expression for this (@pxref{Syntax}), so the loop is straightforward:
|
|||
@group
|
||||
(while (and (< (point) end)
|
||||
(re-search-forward
|
||||
"\\(\\w\\|\\s_\\)+[^ \t\n]*[ \t\n]*" end t)
|
||||
"\\(\\w\\|\\s_\\)+[^ \t\n]*[ \t\n]*" end t))
|
||||
(setq count (1+ count)))
|
||||
@end group
|
||||
@end smallexample
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue