doc/lispref/emacs-lisp-intro.texi (count-words-in-defun): Fix bug#10544.
[bpt/emacs.git] / doc / lispintro / emacs-lisp-intro.texi
index be49c52..d70ff9f 100644 (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