1
Fork 0
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:
Juanma Barranquero 2012-01-19 16:04:24 +01:00
parent 34a02f46dc
commit 1ef1768148
2 changed files with 6 additions and 1 deletions

View file

@ -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