summaryrefslogtreecommitdiff
path: root/doc/lispintro
diff options
context:
space:
mode:
Diffstat (limited to 'doc/lispintro')
-rw-r--r--doc/lispintro/ChangeLog5
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi10
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 @@
+2009-02-20 Juanma Barranquero <lekktu@gmail.com>
+
+ * emacs-lisp-intro.texi (current-kill, Code for current-kill)
+ (Body of current-kill): Remove duplicate words.
+
2008-11-19 Glenn Morris <rgm@gnu.org>
* 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 @@
@comment %**end of header
@c per rms and peterb, use 10pt fonts for the main text, mostly to
-@c save on paper cost.
+@c save on paper cost.
@c Do this inside @tex for now, so current makeinfo does not complain.
@tex
@ifset smallbook
@@ -17997,7 +17997,7 @@ version 21 and is likely to continue, you could write
@end smallexample
@noindent
-and add other expressions, too.
+and add other expressions, too.
@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:
The @code{current-kill} function changes the element in the kill ring
to which @code{kill-ring-yank-pointer} points. (Also, the
@code{kill-new} function sets @code{kill-ring-yank-pointer} to point
-to the latest element of the the kill ring. The @code{kill-new}
+to the latest element of the kill ring. The @code{kill-new}
function is used directly or indirectly by @code{kill-append},
@code{copy-region-as-kill}, @code{kill-ring-save}, @code{kill-line},
and @code{kill-region}.)
@@ -19319,7 +19319,7 @@ yanking point; just return the Nth kill forward."
@end smallexample
Remember also that the @code{kill-new} function sets
-@code{kill-ring-yank-pointer} to the latest element of the the kill
+@code{kill-ring-yank-pointer} to the latest element of the kill
ring, which means that all the functions that call it set the value
indirectly: @code{kill-append}, @code{copy-region-as-kill},
@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
@need 2000
Let us consider the `if not' or else-part of the @code{current-kill}
-function. (The then-part uses the the @code{kill-new} function, which
+function. (The then-part uses the @code{kill-new} function, which
we have already described. @xref{kill-new function, , The
@code{kill-new} function}.)