summaryrefslogtreecommitdiff
path: root/doc/lispintro/emacs-lisp-intro.texi
diff options
context:
space:
mode:
authorJuanma Barranquero <lekktu@gmail.com>2009-02-20 12:36:50 +0000
committerJuanma Barranquero <lekktu@gmail.com>2009-02-20 12:36:50 +0000
commit867d4bb3718f1fee9191e2c17cd810ef620d4b54 (patch)
tree802e52f3063cc18c53e8789bba89e7392db04c5d /doc/lispintro/emacs-lisp-intro.texi
parent52f8870bd7b8508449605a33840bfddc2ea98a2b (diff)
downloademacs-867d4bb3718f1fee9191e2c17cd810ef620d4b54.tar.gz
Remove duplicate words.
Diffstat (limited to 'doc/lispintro/emacs-lisp-intro.texi')
-rw-r--r--doc/lispintro/emacs-lisp-intro.texi10
1 files changed, 5 insertions, 5 deletions
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}.)