diff options
| author | Juanma Barranquero | 2009-02-20 12:36:50 +0000 |
|---|---|---|
| committer | Juanma Barranquero | 2009-02-20 12:36:50 +0000 |
| commit | 867d4bb3718f1fee9191e2c17cd810ef620d4b54 (patch) | |
| tree | 802e52f3063cc18c53e8789bba89e7392db04c5d /doc/lispintro | |
| parent | 52f8870bd7b8508449605a33840bfddc2ea98a2b (diff) | |
| download | emacs-867d4bb3718f1fee9191e2c17cd810ef620d4b54.tar.gz emacs-867d4bb3718f1fee9191e2c17cd810ef620d4b54.zip | |
Remove duplicate words.
Diffstat (limited to 'doc/lispintro')
| -rw-r--r-- | doc/lispintro/ChangeLog | 5 | ||||
| -rw-r--r-- | doc/lispintro/emacs-lisp-intro.texi | 10 |
2 files changed, 10 insertions, 5 deletions
diff --git a/doc/lispintro/ChangeLog b/doc/lispintro/ChangeLog index c65368091a4..da5c9f671b5 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2009-02-20 Juanma Barranquero <lekktu@gmail.com> | ||
| 2 | |||
| 3 | * emacs-lisp-intro.texi (current-kill, Code for current-kill) | ||
| 4 | (Body of current-kill): Remove duplicate words. | ||
| 5 | |||
| 1 | 2008-11-19 Glenn Morris <rgm@gnu.org> | 6 | 2008-11-19 Glenn Morris <rgm@gnu.org> |
| 2 | 7 | ||
| 3 | * doclicense.texi: New file. | 8 | * doclicense.texi: New file. |
diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 3221521ef68..c3ba966895f 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi | |||
| @@ -25,7 +25,7 @@ | |||
| 25 | @comment %**end of header | 25 | @comment %**end of header |
| 26 | 26 | ||
| 27 | @c per rms and peterb, use 10pt fonts for the main text, mostly to | 27 | @c per rms and peterb, use 10pt fonts for the main text, mostly to |
| 28 | @c save on paper cost. | 28 | @c save on paper cost. |
| 29 | @c Do this inside @tex for now, so current makeinfo does not complain. | 29 | @c Do this inside @tex for now, so current makeinfo does not complain. |
| 30 | @tex | 30 | @tex |
| 31 | @ifset smallbook | 31 | @ifset smallbook |
| @@ -17997,7 +17997,7 @@ version 21 and is likely to continue, you could write | |||
| 17997 | @end smallexample | 17997 | @end smallexample |
| 17998 | 17998 | ||
| 17999 | @noindent | 17999 | @noindent |
| 18000 | and add other expressions, too. | 18000 | and add other expressions, too. |
| 18001 | 18001 | ||
| 18002 | 18002 | ||
| 18003 | @node X11 Colors, Miscellaneous, Simple Extension, Emacs Initialization | 18003 | @node X11 Colors, Miscellaneous, Simple Extension, Emacs Initialization |
| @@ -19261,7 +19261,7 @@ To return to the old value for the length of the kill ring, evaluate: | |||
| 19261 | The @code{current-kill} function changes the element in the kill ring | 19261 | The @code{current-kill} function changes the element in the kill ring |
| 19262 | to which @code{kill-ring-yank-pointer} points. (Also, the | 19262 | to which @code{kill-ring-yank-pointer} points. (Also, the |
| 19263 | @code{kill-new} function sets @code{kill-ring-yank-pointer} to point | 19263 | @code{kill-new} function sets @code{kill-ring-yank-pointer} to point |
| 19264 | to the latest element of the the kill ring. The @code{kill-new} | 19264 | to the latest element of the kill ring. The @code{kill-new} |
| 19265 | function is used directly or indirectly by @code{kill-append}, | 19265 | function is used directly or indirectly by @code{kill-append}, |
| 19266 | @code{copy-region-as-kill}, @code{kill-ring-save}, @code{kill-line}, | 19266 | @code{copy-region-as-kill}, @code{kill-ring-save}, @code{kill-line}, |
| 19267 | and @code{kill-region}.) | 19267 | and @code{kill-region}.) |
| @@ -19319,7 +19319,7 @@ yanking point; just return the Nth kill forward." | |||
| 19319 | @end smallexample | 19319 | @end smallexample |
| 19320 | 19320 | ||
| 19321 | Remember also that the @code{kill-new} function sets | 19321 | Remember also that the @code{kill-new} function sets |
| 19322 | @code{kill-ring-yank-pointer} to the latest element of the the kill | 19322 | @code{kill-ring-yank-pointer} to the latest element of the kill |
| 19323 | ring, which means that all the functions that call it set the value | 19323 | ring, which means that all the functions that call it set the value |
| 19324 | indirectly: @code{kill-append}, @code{copy-region-as-kill}, | 19324 | indirectly: @code{kill-append}, @code{copy-region-as-kill}, |
| 19325 | @code{kill-ring-save}, @code{kill-line}, and @code{kill-region}. | 19325 | @code{kill-ring-save}, @code{kill-line}, and @code{kill-region}. |
| @@ -19381,7 +19381,7 @@ The @code{if} expression has two parts, one if there exists | |||
| 19381 | 19381 | ||
| 19382 | @need 2000 | 19382 | @need 2000 |
| 19383 | Let us consider the `if not' or else-part of the @code{current-kill} | 19383 | Let us consider the `if not' or else-part of the @code{current-kill} |
| 19384 | function. (The then-part uses the the @code{kill-new} function, which | 19384 | function. (The then-part uses the @code{kill-new} function, which |
| 19385 | we have already described. @xref{kill-new function, , The | 19385 | we have already described. @xref{kill-new function, , The |
| 19386 | @code{kill-new} function}.) | 19386 | @code{kill-new} function}.) |
| 19387 | 19387 | ||