diff options
author | Andy Wingo <wingo@pobox.com> | 2017-03-10 12:02:21 +0100 |
---|---|---|
committer | Andy Wingo <wingo@pobox.com> | 2017-03-10 12:02:44 +0100 |
commit | 6d0091d545160525af12c1d375b0eb51e15cd370 (patch) | |
tree | 8427384896a4e3d181b26eb07282a52e312b0eaf /doc | |
parent | fe0117ad63a15abff9d9471a61a5850bbf98ceee (diff) |
Revert "Fix "Scheme Syntax" info rendering"
This reverts commit 62f08b8f38990c1849ea61cd622f84b3d2611cd9, which was
causing failing texi2dvi runs.
Diffstat (limited to 'doc')
-rw-r--r-- | doc/ref/api-evaluation.texi | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/ref/api-evaluation.texi b/doc/ref/api-evaluation.texi index f7ec4afbd..3a3e9e632 100644 --- a/doc/ref/api-evaluation.texi +++ b/doc/ref/api-evaluation.texi @@ -92,7 +92,7 @@ Note that an application must not attempt to modify literal strings, since they may be in read-only memory. @item (quote @var{data}) -@itemx @verb{|'|}@var{data} +@itemx '@var{data} @findex quote @findex ' Quoting is used to obtain a literal symbol (instead of a variable @@ -114,7 +114,7 @@ vectors obtained from a @code{quote} form, since they may be in read-only memory. @item (quasiquote @var{data}) -@itemx @verb{|`|}@var{data} +@itemx `@var{data} @findex quasiquote @findex ` Backquote quasi-quotation is like @code{quote}, but selected |