summaryrefslogtreecommitdiff
path: root/lispintro
diff options
context:
space:
mode:
authorRobert J. Chassell <bob@rattlesnake.com>2004-10-07 12:06:59 +0000
committerRobert J. Chassell <bob@rattlesnake.com>2004-10-07 12:06:59 +0000
commitd7a177502ccb5701c131a38c7581b4414792eef0 (patch)
tree46a80019f2ccf09e9d9774c59b9dd9a38f5988e6 /lispintro
parent137b1fff63d8b2823ae2e6ab89cb40ef54bd5669 (diff)
downloademacs-d7a177502ccb5701c131a38c7581b4414792eef0.tar.gz
Add missing backquote.
Diffstat (limited to 'lispintro')
-rw-r--r--lispintro/emacs-lisp-intro.texi2
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