From 526e7132b8e2a51cdb6a5454280fae96ddac9078 Mon Sep 17 00:00:00 2001 From: Alvar Jesus Ibeas Martin Date: Tue, 15 Jul 2014 19:06:49 +0300 Subject: [PATCH] Fix bug #18025 with typos in Emacs Lisp Introduction manual. doc/lispintro/emacs-lisp-intro.texi (Variables, Buffer Names, if & or) (Symbols as Chest, fwd-para while): Fix typos. --- doc/lispintro/ChangeLog | 5 +++++ 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 ee3af3ff3d1..c1607487b6f 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog @@ -1,3 +1,8 @@ +2014-07-15 Álvar Jesús Ibeas Martín (tiny change) + + * emacs-lisp-intro.texi (Variables, Buffer Names, if & or) + (Symbols as Chest, fwd-para while): Fix typos. + 2014-06-29 Glenn Morris * emacs-lisp-intro.texi (Note for Novices, Finding More, Conclusion): diff --git a/doc/lispintro/emacs-lisp-intro.texi b/doc/lispintro/emacs-lisp-intro.texi index 4c85e67f7f3..8ff57619c04 100644 --- a/doc/lispintro/emacs-lisp-intro.texi +++ b/doc/lispintro/emacs-lisp-intro.texi @@ -1700,7 +1700,7 @@ Another way to think about this is to imagine a symbol as being a chest of drawers. The function definition is put in one drawer, the value in another, and so on. What is put in the drawer holding the value can be changed without affecting the contents of the drawer holding the -function definition, and vice-verse. +function definition, and vice versa. @menu * fill-column Example:: @@ -2653,7 +2653,7 @@ functions; without the parentheses, the interpreter would attempt to evaluate the symbols as variables. @xref{Variables}.) In spite of the distinction between files and buffers, you will often -find that people refer to a file when they mean a buffer and vice-verse. +find that people refer to a file when they mean a buffer and vice versa. Indeed, most people say, ``I am editing a file,'' rather than saying, ``I am editing a buffer which I will soon save to a file.'' It is almost always clear from context what people mean. When dealing with @@ -5756,7 +5756,7 @@ so the true-or-false-test looks like this: @noindent @code{not} is a function that returns true if its argument is false and false if its argument is true. So if @code{(bufferp buffer)} -returns true, the @code{not} expression returns false and vice-verse: +returns true, the @code{not} expression returns false and vice versa: what is ``not true'' is false and what is ``not false'' is true. Using this test, the @code{if} expression works as follows: when the @@ -9805,7 +9805,7 @@ In an earlier section, I suggested that you might imagine a symbol as being a chest of drawers. The function definition is put in one drawer, the value in another, and so on. What is put in the drawer holding the value can be changed without affecting the contents of the -drawer holding the function definition, and vice-verse. +drawer holding the function definition, and vice versa. Actually, what is put in each drawer is the address of the value or function definition. It is as if you found an old chest in the attic, @@ -13235,7 +13235,7 @@ Consider what happens when there is no fill prefix. @noindent This @code{while} loop has us searching forward for @code{sp-parstart}, which is the combination of possible whitespace -with a the local value of the start of a paragraph or of a paragraph +with the local value of the start of a paragraph or of a paragraph separator. (The latter two are within an expression starting @code{\(?:} so that they are not referenced by the @code{match-beginning} function.) -- 2.39.5