comparison lispref/intro.texi @ 71957:61cb5aae3bc3

Put period and comma inside quotes.
author Richard M. Stallman <rms@gnu.org>
date Tue, 18 Jul 2006 00:08:15 +0000
parents 0cb3de2796ef
children 6d19c76d81c5 8a8e69664178
comparison
equal deleted inserted replaced
71956:1caee6e0cbe1 71957:61cb5aae3bc3
158 Throughout this manual, the phrases ``the Lisp reader'' and ``the Lisp 158 Throughout this manual, the phrases ``the Lisp reader'' and ``the Lisp
159 printer'' refer to those routines in Lisp that convert textual 159 printer'' refer to those routines in Lisp that convert textual
160 representations of Lisp objects into actual Lisp objects, and vice 160 representations of Lisp objects into actual Lisp objects, and vice
161 versa. @xref{Printed Representation}, for more details. You, the 161 versa. @xref{Printed Representation}, for more details. You, the
162 person reading this manual, are thought of as ``the programmer'' and are 162 person reading this manual, are thought of as ``the programmer'' and are
163 addressed as ``you''. ``The user'' is the person who uses Lisp 163 addressed as ``you.'' ``The user'' is the person who uses Lisp
164 programs, including those you write. 164 programs, including those you write.
165 165
166 @cindex fonts in this manual 166 @cindex fonts in this manual
167 Examples of Lisp code are formatted like this: @code{(list 1 2 3)}. 167 Examples of Lisp code are formatted like this: @code{(list 1 2 3)}.
168 Names that represent metasyntactic variables, or arguments to a function 168 Names that represent metasyntactic variables, or arguments to a function
231 (car '(1 2)) 231 (car '(1 2))
232 @result{} 1 232 @result{} 1
233 @end example 233 @end example
234 234
235 @noindent 235 @noindent
236 You can read this as ``@code{(car '(1 2))} evaluates to 1''. 236 You can read this as ``@code{(car '(1 2))} evaluates to 1.''
237 237
238 When a form is a macro call, it expands into a new form for Lisp to 238 When a form is a macro call, it expands into a new form for Lisp to
239 evaluate. We show the result of the expansion with 239 evaluate. We show the result of the expansion with
240 @samp{@expansion{}}. We may or may not show the result of the 240 @samp{@expansion{}}. We may or may not show the result of the
241 evaluation of the expanded form. 241 evaluation of the expanded form.