summaryrefslogtreecommitdiff
path: root/doc/lispintro/emacs-lisp-intro.texi
diff options
context:
space:
mode:
authorXue Fuqiao <xfq.free@gmail.com>2013-08-02 10:33:12 +0800
committerXue Fuqiao <xfq.free@gmail.com>2013-08-02 10:33:12 +0800
commita4111cfb0191685bae04dd408d7969ee4b94cfa3 (patch)
tree3954b55a03f09669c4899d96206cb0ef3571ee48 /doc/lispintro/emacs-lisp-intro.texi
parenta5062b5e346d131196f9eafe8c86f58445b0dfd1 (diff)
downloademacs-a4111cfb0191685bae04dd408d7969ee4b94cfa3.tar.gz
emacs-a4111cfb0191685bae04dd408d7969ee4b94cfa3.tar.bz2
emacs-a4111cfb0191685bae04dd408d7969ee4b94cfa3.zip
* doc/lispintro/emacs-lisp-intro.texi (zap-to-char): Remove obsolete stuff.
Diffstat (limited to 'doc/lispintro/emacs-lisp-intro.texi')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi15
1 files changed, 1 insertions, 14 deletions
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi
index dafee51a020..f0d9ab63935 100644
--- a/doc/lispintro/emacs-lisp-intro.texi
+++ b/doc/lispintro/emacs-lisp-intro.texi
@@ -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.