@defspec quote object
This special form returns @var{object}, without evaluating it.
+The returned value is a constant, and should not be modified.
@end defspec
@cindex @samp{'} for quoting
@dfn{Backquote constructs} allow you to quote a list, but
selectively evaluate elements of that list. In the simplest case, it
-is identical to the special form @code{quote}
+is identical to the special form
@iftex
+@code{quote}.
@end iftex
@ifnottex
+@code{quote}
(described in the previous section; @pxref{Quoting}).
@end ifnottex
For example, these two forms yield identical results:
@end group
@end example
+If a subexpression of a backquote construct has no substitutions or
+splices, it acts like @code{quote} in that it yields a constant that
+should not be modified.
@node Eval
@section Eval