Small emacs-lisp-intro.texi correction (tiny change)
authorGregor Zattler <grfz@gmx.de>
Sat, 13 Oct 2012 02:22:36 +0000 (19:22 -0700)
committerGlenn Morris <rgm@gnu.org>
Sat, 13 Oct 2012 02:22:36 +0000 (19:22 -0700)
* doc/lispintro/emacs-lisp-intro.texi (Narrowing advantages):
Minor update for changed what-line implementation.

Fixes: debbugs:12629

doc/lispintro/ChangeLog
doc/lispintro/emacs-lisp-intro.texi

index bc2ed8a..b374266 100644 (file)
@@ -1,3 +1,8 @@
+2012-10-13  Gregor Zattler  <grfz@gmx.de>  (tiny change)
+
+       * emacs-lisp-intro.texi (Narrowing advantages):
+       Minor update for changed what-line implementation.  (Bug#12629)
+
 2012-08-24  Chong Yidong  <cyd@gnu.org>
 
        * Version 24.2 released.
index 9446333..c0c7dec 100644 (file)
@@ -6681,8 +6681,8 @@ buffer; or conversely, an Emacs Lisp function needs to work on all of a
 buffer that has been narrowed.  The @code{what-line} function, for
 example, removes the narrowing from a buffer, if it has any narrowing
 and when it has finished its job, restores the narrowing to what it was.
-On the other hand, the @code{count-lines} function, which is called by
-@code{what-line}, uses narrowing to restrict itself to just that portion
+On the other hand, the @code{count-lines} function
+uses narrowing to restrict itself to just that portion
 of the buffer in which it is interested and then restores the previous
 situation.