diff options
| author | Glenn Morris | 2014-07-16 13:06:12 -0400 |
|---|---|---|
| committer | Glenn Morris | 2014-07-16 13:06:12 -0400 |
| commit | 02a7e500e85ffe42a352a9e0c1fddd1ed6a67658 (patch) | |
| tree | eeac0cbcf4d0a6f0896e544ff84eb5c30e652790 /doc | |
| parent | 70f8097ea2b81fc6624453cf21720f1a1f617862 (diff) | |
| parent | 61dcf9bc85b309e1fa052eb1e76698d4789f7f72 (diff) | |
| download | emacs-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/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 1ac7258e85a..70d7767635f 100644 --- a/doc/lispintro/ChangeLog +++ b/doc/lispintro/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2014-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 | |||
| 1 | 2014-07-03 Glenn Morris <rgm@gnu.org> | 6 | 2014-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 | |||
| 1700 | of drawers. The function definition is put in one drawer, the value in | 1700 | of drawers. The function definition is put in one drawer, the value in |
| 1701 | another, and so on. What is put in the drawer holding the value can be | 1701 | another, and so on. What is put in the drawer holding the value can be |
| 1702 | changed without affecting the contents of the drawer holding the | 1702 | changed without affecting the contents of the drawer holding the |
| 1703 | function definition, and vice-verse. | 1703 | function 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 | |||
| 2653 | evaluate the symbols as variables. @xref{Variables}.) | 2653 | evaluate the symbols as variables. @xref{Variables}.) |
| 2654 | 2654 | ||
| 2655 | In spite of the distinction between files and buffers, you will often | 2655 | In spite of the distinction between files and buffers, you will often |
| 2656 | find that people refer to a file when they mean a buffer and vice-verse. | 2656 | find that people refer to a file when they mean a buffer and vice versa. |
| 2657 | Indeed, most people say, ``I am editing a file,'' rather than saying, | 2657 | Indeed, 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 |
| 2659 | almost always clear from context what people mean. When dealing with | 2659 | almost 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 |
| 5758 | and false if its argument is true. So if @code{(bufferp buffer)} | 5758 | and false if its argument is true. So if @code{(bufferp buffer)} |
| 5759 | returns true, the @code{not} expression returns false and vice-verse: | 5759 | returns true, the @code{not} expression returns false and vice versa: |
| 5760 | what is ``not true'' is false and what is ``not false'' is true. | 5760 | what is ``not true'' is false and what is ``not false'' is true. |
| 5761 | 5761 | ||
| 5762 | Using this test, the @code{if} expression works as follows: when the | 5762 | 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 | |||
| 9805 | being a chest of drawers. The function definition is put in one | 9805 | being a chest of drawers. The function definition is put in one |
| 9806 | drawer, the value in another, and so on. What is put in the drawer | 9806 | drawer, the value in another, and so on. What is put in the drawer |
| 9807 | holding the value can be changed without affecting the contents of the | 9807 | holding the value can be changed without affecting the contents of the |
| 9808 | drawer holding the function definition, and vice-verse. | 9808 | drawer holding the function definition, and vice versa. |
| 9809 | 9809 | ||
| 9810 | Actually, what is put in each drawer is the address of the value or | 9810 | Actually, what is put in each drawer is the address of the value or |
| 9811 | function definition. It is as if you found an old chest in the attic, | 9811 | 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. | |||
| 13235 | @noindent | 13235 | @noindent |
| 13236 | This @code{while} loop has us searching forward for | 13236 | This @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 |
| 13238 | with a the local value of the start of a paragraph or of a paragraph | 13238 | with the local value of the start of a paragraph or of a paragraph |
| 13239 | separator. (The latter two are within an expression starting | 13239 | separator. (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.) |