From: Martin Rudalics Date: Tue, 11 Dec 2018 08:16:21 +0000 (+0100) Subject: Tiny markup fix in Elisp manual X-Git-Tag: emacs-26.1.91~46 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=5d1b158feb693847015326b3eae6605c9794b47d;p=emacs.git Tiny markup fix in Elisp manual * doc/lispref/lists.texi (Building Lists): Use '@var' instead of '@code' for argument. --- 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.