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:
parent
34a02f46dc
commit
1ef1768148
@ -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.
|
||||
|
@ -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…
Reference in New Issue
Block a user