summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartin Rudalics <rudalics@gmx.at>2018-12-11 09:16:21 +0100
committerMartin Rudalics <rudalics@gmx.at>2018-12-11 09:16:21 +0100
commit5d1b158feb693847015326b3eae6605c9794b47d (patch)
tree0d711aa2d9b67dc828af695d44682926d86413c5
parent2075864c7717491f1156998120535ce72ed8f0cc (diff)
downloademacs-5d1b158feb693847015326b3eae6605c9794b47d.tar.gz
Tiny markup fix in Elisp manual
* doc/lispref/lists.texi (Building Lists): Use '@var' instead of '@code' for argument.
-rw-r--r--doc/lispref/lists.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi
index ce62793550d..fdcfe33661d 100644
--- a/doc/lispref/lists.texi
+++ b/doc/lispref/lists.texi
@@ -640,7 +640,7 @@ resulting list. Instead, the sequence becomes the final @sc{cdr}, like
any other non-list final argument.
@defun copy-tree tree &optional vecp
-This function returns a copy of the tree @code{tree}. If @var{tree} is a
+This function returns a copy of the tree @var{tree}. If @var{tree} is a
cons cell, this makes a new cons cell with the same @sc{car} and
@sc{cdr}, then recursively copies the @sc{car} and @sc{cdr} in the
same way.