1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2025-01-11 16:08:13 +00: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

@ -1,3 +1,8 @@
2012-01-19 Juanma Barranquero <lekktu@gmail.com>
* emacs-lisp-intro.texi (count-words-in-defun):
Add missing parenthesis (bug#10544).
2012-01-17 Glenn Morris <rgm@gnu.org>
* emacs-lisp-intro.texi (re-search-forward): Fix typo.

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