diff options
author | Robert J. Chassell <bob@rattlesnake.com> | 2004-10-07 12:06:59 +0000 |
---|---|---|
committer | Robert J. Chassell <bob@rattlesnake.com> | 2004-10-07 12:06:59 +0000 |
commit | 626f61ac6fbe43e4f121f5f95409b4e8b0c081c3 (patch) | |
tree | 3eb9527745cd2ec58aae9acc5af882996dbb43cf /lispintro/emacs-lisp-intro.texi | |
parent | eb6a2b61401ca737487aa7770389c01c0e962cb0 (diff) | |
download | emacs-626f61ac6fbe43e4f121f5f95409b4e8b0c081c3.tar.gz |
Add missing backquote.
Diffstat (limited to 'lispintro/emacs-lisp-intro.texi')
-rw-r--r-- | lispintro/emacs-lisp-intro.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lispintro/emacs-lisp-intro.texi b/lispintro/emacs-lisp-intro.texi index 4130eefd2cf..b47ff7aa5b1 100644 --- a/lispintro/emacs-lisp-intro.texi +++ b/lispintro/emacs-lisp-intro.texi @@ -4009,7 +4009,7 @@ the @dfn{else-part}, for the case when the true-or-false-test returns false. When this happens, the second argument or then-part of the overall @code{if} expression is @emph{not} evaluated, but the third or else-part @emph{is} evaluated. You might think of this as the cloudy -day alternative for the decision `if it is warm and sunny, then go to +day alternative for the decision ``if it is warm and sunny, then go to the beach, else read a book!''. The word ``else'' is not written in the Lisp code; the else-part of an |