]> git.eshelyaron.com Git - emacs.git/commitdiff
* doc/lispintro/emacs-lisp-intro.texi (zap-to-char): Remove obsolete stuff.
authorXue Fuqiao <xfq.free@gmail.com>
Fri, 2 Aug 2013 02:33:12 +0000 (10:33 +0800)
committerXue Fuqiao <xfq.free@gmail.com>
Fri, 2 Aug 2013 02:33:12 +0000 (10:33 +0800)
doc/lispintro/ChangeLog
doc/lispintro/emacs-lisp-intro.texi

index 4182b6a3184cf7139bc15cf789f161bf7f46da6c..481eb0c9db8f4371ec0b5299019409630a5c1669 100644 (file)
@@ -1,3 +1,7 @@
+2013-08-02  Xue Fuqiao  <xfq.free@gmail.com>
+
+       * emacs-lisp-intro.texi (zap-to-char): Remove obsolete stuff.
+
 2013-07-06  Glenn Morris  <rgm@gnu.org>
 
        * emacs-lisp-intro.texi (Top):
index dafee51a0203711525147b01f0116869760c3498..f0d9ab63935c13c83a0ac0692dc5e24a50a11a5e 100644 (file)
@@ -7537,20 +7537,7 @@ retrieved.  @xref{Yanking, , Yanking Text Back}.
 @section @code{zap-to-char}
 @findex zap-to-char
 
-@c FIXME remove obsolete stuff
-The @code{zap-to-char} function changed little between GNU Emacs
-version 19 and GNU Emacs version 22.  However, @code{zap-to-char}
-calls another function, @code{kill-region}, which enjoyed a major
-rewrite.
-
-The @code{kill-region} function in Emacs 19 is complex, but does not
-use code that is important at this time.  We will skip it.
-
-The @code{kill-region} function in Emacs 22 is easier to read than the
-same function in Emacs 19 and introduces a very important concept,
-that of error handling.  We will walk through the function.
-
-But first, let us look at the interactive @code{zap-to-char} function.
+Let us look at the interactive @code{zap-to-char} function.
 
 @menu
 * Complete zap-to-char::        The complete implementation.