diff options
| author | Xue Fuqiao | 2013-08-02 10:33:12 +0800 |
|---|---|---|
| committer | Xue Fuqiao | 2013-08-02 10:33:12 +0800 |
| commit | a4111cfb0191685bae04dd408d7969ee4b94cfa3 (patch) | |
| tree | 3954b55a03f09669c4899d96206cb0ef3571ee48 | |
| parent | a5062b5e346d131196f9eafe8c86f58445b0dfd1 (diff) | |
| download | emacs-a4111cfb0191685bae04dd408d7969ee4b94cfa3.tar.gz emacs-a4111cfb0191685bae04dd408d7969ee4b94cfa3.zip | |
* doc/lispintro/emacs-lisp-intro.texi (zap-to-char): Remove obsolete stuff.
| -rw-r--r-- | doc/lispintro/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 15 |
2 files changed, 5 insertions, 14 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index 4182b6a3184..481eb0c9db8 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog | |||
| @@ -1,3 +1,7 @@ | |||
| 1 | 2013-08-02 Xue Fuqiao <xfq.free@gmail.com> | ||
| 2 | |||
| 3 | * emacs-lisp-intro.texi (zap-to-char): Remove obsolete stuff. | ||
| 4 | |||
| 1 | 2013-07-06 Glenn Morris <rgm@gnu.org> | 5 | 2013-07-06 Glenn Morris <rgm@gnu.org> |
| 2 | 6 | ||
| 3 | * emacs-lisp-intro.texi (Top): | 7 | * emacs-lisp-intro.texi (Top): |
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}. | |||
| 7537 | @section @code{zap-to-char} | 7537 | @section @code{zap-to-char} |
| 7538 | @findex zap-to-char | 7538 | @findex zap-to-char |
| 7539 | 7539 | ||
| 7540 | @c FIXME remove obsolete stuff | 7540 | Let us look at the interactive @code{zap-to-char} function. |
| 7541 | The @code{zap-to-char} function changed little between GNU Emacs | ||
| 7542 | version 19 and GNU Emacs version 22. However, @code{zap-to-char} | ||
| 7543 | calls another function, @code{kill-region}, which enjoyed a major | ||
| 7544 | rewrite. | ||
| 7545 | |||
| 7546 | The @code{kill-region} function in Emacs 19 is complex, but does not | ||
| 7547 | use code that is important at this time. We will skip it. | ||
| 7548 | |||
| 7549 | The @code{kill-region} function in Emacs 22 is easier to read than the | ||
| 7550 | same function in Emacs 19 and introduces a very important concept, | ||
| 7551 | that of error handling. We will walk through the function. | ||
| 7552 | |||
| 7553 | But first, let us look at the interactive @code{zap-to-char} function. | ||
| 7554 | 7541 | ||
| 7555 | @menu | 7542 | @menu |
| 7556 | * Complete zap-to-char:: The complete implementation. | 7543 | * Complete zap-to-char:: The complete implementation. |