aboutsummaryrefslogtreecommitdiffstats
path: root/doc
diff options
context:
space:
mode:
authorGlenn Morris2014-07-16 13:06:12 -0400
committerGlenn Morris2014-07-16 13:06:12 -0400
commit02a7e500e85ffe42a352a9e0c1fddd1ed6a67658 (patch)
treeeeac0cbcf4d0a6f0896e544ff84eb5c30e652790 /doc
parent70f8097ea2b81fc6624453cf21720f1a1f617862 (diff)
parent61dcf9bc85b309e1fa052eb1e76698d4789f7f72 (diff)
downloademacs-02a7e500e85ffe42a352a9e0c1fddd1ed6a67658.tar.gz
emacs-02a7e500e85ffe42a352a9e0c1fddd1ed6a67658.zip
Merge from emacs-24; up to 2014-06-23T06:25:47Z!rgm@gnu.org
Diffstat (limited to 'doc')
-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 1ac7258e85a..70d7767635f 100644
--- a/doc/lispintro/ChangeLog
+++ b/doc/lispintro/ChangeLog
@@ -1,3 +1,8 @@
12014-07-16 Álvar Jesús Ibeas Martín <alvar.ibeas@unican.es> (tiny change)
2
3 * emacs-lisp-intro.texi (Variables, Buffer Names, if & or)
4 (Symbols as Chest, fwd-para while): Fix typos.
5
12014-07-03 Glenn Morris <rgm@gnu.org> 62014-07-03 Glenn Morris <rgm@gnu.org>
2 7
3 * emacs-lisp-intro.texi (Note for Novices, Finding More, Conclusion): 8 * 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 7ff91758670..f915d0da8ab 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
1700of drawers. The function definition is put in one drawer, the value in 1700of drawers. The function definition is put in one drawer, the value in
1701another, and so on. What is put in the drawer holding the value can be 1701another, and so on. What is put in the drawer holding the value can be
1702changed without affecting the contents of the drawer holding the 1702changed without affecting the contents of the drawer holding the
1703function definition, and vice-verse. 1703function definition, and vice versa.
1704 1704
1705@menu 1705@menu
1706* fill-column Example:: 1706* fill-column Example::
@@ -2653,7 +2653,7 @@ functions; without the parentheses, the interpreter would attempt to
2653evaluate the symbols as variables. @xref{Variables}.) 2653evaluate the symbols as variables. @xref{Variables}.)
2654 2654
2655In spite of the distinction between files and buffers, you will often 2655In spite of the distinction between files and buffers, you will often
2656find that people refer to a file when they mean a buffer and vice-verse. 2656find that people refer to a file when they mean a buffer and vice versa.
2657Indeed, most people say, ``I am editing a file,'' rather than saying, 2657Indeed, most people say, ``I am editing a file,'' rather than saying,
2658``I am editing a buffer which I will soon save to a file.'' It is 2658``I am editing a buffer which I will soon save to a file.'' It is
2659almost always clear from context what people mean. When dealing with 2659almost always clear from context what people mean. When dealing with
@@ -5756,7 +5756,7 @@ so the true-or-false-test looks like this:
5756@noindent 5756@noindent
5757@code{not} is a function that returns true if its argument is false 5757@code{not} is a function that returns true if its argument is false
5758and false if its argument is true. So if @code{(bufferp buffer)} 5758and false if its argument is true. So if @code{(bufferp buffer)}
5759returns true, the @code{not} expression returns false and vice-verse: 5759returns true, the @code{not} expression returns false and vice versa:
5760what is ``not true'' is false and what is ``not false'' is true. 5760what is ``not true'' is false and what is ``not false'' is true.
5761 5761
5762Using this test, the @code{if} expression works as follows: when the 5762Using 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
9805being a chest of drawers. The function definition is put in one 9805being a chest of drawers. The function definition is put in one
9806drawer, the value in another, and so on. What is put in the drawer 9806drawer, the value in another, and so on. What is put in the drawer
9807holding the value can be changed without affecting the contents of the 9807holding the value can be changed without affecting the contents of the
9808drawer holding the function definition, and vice-verse. 9808drawer holding the function definition, and vice versa.
9809 9809
9810Actually, what is put in each drawer is the address of the value or 9810Actually, what is put in each drawer is the address of the value or
9811function definition. It is as if you found an old chest in the attic, 9811function 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.
13235@noindent 13235@noindent
13236This @code{while} loop has us searching forward for 13236This @code{while} loop has us searching forward for
13237@code{sp-parstart}, which is the combination of possible whitespace 13237@code{sp-parstart}, which is the combination of possible whitespace
13238with a the local value of the start of a paragraph or of a paragraph 13238with the local value of the start of a paragraph or of a paragraph
13239separator. (The latter two are within an expression starting 13239separator. (The latter two are within an expression starting
13240@code{\(?:} so that they are not referenced by the 13240@code{\(?:} so that they are not referenced by the
13241@code{match-beginning} function.) 13241@code{match-beginning} function.)