bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#10544: emacs lisp intro bug


From: chromaticwt zac
Subject: bug#10544: emacs lisp intro bug
Date: Wed, 18 Jan 2012 11:41:11 -0700

Section 14.3 of the emacs lisp intro contains the following _expression_:

(while (and (< (point) end)
                  (re-search-forward
                   "\\(\\w\\|\\s_\\)+[^ \t\n]*[ \t\n]*" end t)
     (setq count (1+ count)))

this is the first while _expression_ listed. the "end t)" should be "end t))". it is missing a paren. this is emacs version 24.0.92.1.

reply via email to

[Prev in Thread] Current Thread [Next in Thread]