diff options
author | Robert J. Chassell <bob@rattlesnake.com> | 2003-04-17 14:56:24 +0000 |
---|---|---|
committer | Robert J. Chassell <bob@rattlesnake.com> | 2003-04-17 14:56:24 +0000 |
commit | f5cb03551cacb7b76a4421e85f91307856e01117 (patch) | |
tree | a4223df694404905624d557eef87c8f59a319f68 /lispintro | |
parent | 45e8e6e75e85819ac82b480f284a78d306d74113 (diff) | |
download | emacs-f5cb03551cacb7b76a4421e85f91307856e01117.tar.gz |
Thanks to Hugo Gayosso, fix minor typos.
Diffstat (limited to 'lispintro')
-rw-r--r-- | lispintro/emacs-lisp-intro.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi index bc1602179a6..143fa190fe8 100644 --- a/lispintro/emacs-lisp-intro.texi +++ b/lispintro/emacs-lisp-intro.texi @@ -5681,7 +5681,7 @@ 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 -value of the variable @code{buffer} is actually a buffer rather then +value of the variable @code{buffer} is actually a buffer rather than its name, the true-or-false-test returns false and the @code{if} expression does not evaluate the then-part. This is fine, since we do not need to do anything to the variable @code{buffer} if it really is @@ -8337,7 +8337,7 @@ evaluated, it is bound to the value returned by evaluating the actual argument. In this case, this is the expression @code{(< end beg)}. This expression does not directly determine whether the killed text in this command is located before or after the kill text of the last -command; what is does is determine whether the value of the variable +command; what it does is determine whether the value of the variable @code{end} is less than the value of the variable @code{beg}. If it is, it means that the user is most likely heading towards the beginning of the buffer. Also, the result of evaluating the predicate |