summaryrefslogtreecommitdiff
path: root/doc/lispref/sequences.texi
diff options
context:
space:
mode:
authorBasil L. Contovounesios <contovob@tcd.ie>2018-07-10 19:51:28 -0700
committerPaul Eggert <eggert@cs.ucla.edu>2018-07-10 19:54:31 -0700
commitdb3874b16192142f473d53e3b80213ad74d19eff (patch)
tree24fb2f5e7fd700b7c2550512284bf4fa25f9d4ff /doc/lispref/sequences.texi
parent35e0305dc2a57cea6fcb515db9e0b0f938daf53a (diff)
downloademacs-db3874b16192142f473d53e3b80213ad74d19eff.tar.gz
emacs-db3874b16192142f473d53e3b80213ad74d19eff.tar.bz2
emacs-db3874b16192142f473d53e3b80213ad74d19eff.zip
Refer to "proper lists" instead of "true lists"
* doc/lispref/lists.texi (Cons Cells, Building Lists): * doc/lispref/sequences.texi (Vector Functions): Use the more popular term "proper", rather than "true", to qualify nil-terminated lists. For discussion, see the following emacs-devel subthreads: https://lists.gnu.org/archive/html/emacs-devel/2018-06/msg00112.html https://lists.gnu.org/archive/html/emacs-devel/2018-06/msg00138.html
Diffstat (limited to 'doc/lispref/sequences.texi')
-rw-r--r--doc/lispref/sequences.texi2
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi
index 188a3451140..327de6eb86a 100644
--- a/doc/lispref/sequences.texi
+++ b/doc/lispref/sequences.texi
@@ -1355,7 +1355,7 @@ each initialized to @var{object}.
@defun vconcat &rest sequences
@cindex copying vectors
This function returns a new vector containing all the elements of
-@var{sequences}. The arguments @var{sequences} may be true lists,
+@var{sequences}. The arguments @var{sequences} may be proper lists,
vectors, strings or bool-vectors. If no @var{sequences} are given,
the empty vector is returned.