aboutsummaryrefslogtreecommitdiffstats
path: root/doc/lispref/sequences.texi
diff options
context:
space:
mode:
authorPaul Eggert2014-01-04 17:33:33 -0800
committerPaul Eggert2014-01-04 17:33:33 -0800
commit5a0f4e9062f20f26a3f3b89e60a7bf2fd136e4c0 (patch)
tree01560d33d49281c32ed100473cc0f11d856154f7 /doc/lispref/sequences.texi
parent7c2127d0f4151164c47ab811c4c134922f7f9c44 (diff)
downloademacs-5a0f4e9062f20f26a3f3b89e60a7bf2fd136e4c0.tar.gz
emacs-5a0f4e9062f20f26a3f3b89e60a7bf2fd136e4c0.zip
Document vconcat and the empty vector (Bug#16246).
* sequences.texi (Vector Functions): Document behavior better when the result is empty.
Diffstat (limited to 'doc/lispref/sequences.texi')
-rw-r--r--doc/lispref/sequences.texi8
1 files changed, 4 insertions, 4 deletions
diff --git a/doc/lispref/sequences.texi b/doc/lispref/sequences.texi
index 362737f9956..52a1cf5e32c 100644
--- a/doc/lispref/sequences.texi
+++ b/doc/lispref/sequences.texi
@@ -471,11 +471,11 @@ each initialized to @var{object}.
471@cindex copying vectors 471@cindex copying vectors
472This function returns a new vector containing all the elements of 472This function returns a new vector containing all the elements of
473@var{sequences}. The arguments @var{sequences} may be true lists, 473@var{sequences}. The arguments @var{sequences} may be true lists,
474vectors, strings or bool-vectors. If no @var{sequences} are given, an 474vectors, strings or bool-vectors. If no @var{sequences} are given,
475empty vector is returned. 475the empty vector is returned.
476 476
477The value is a newly constructed vector that is not @code{eq} to any 477The value is either the empty vector, or is a newly constructed
478existing vector. 478nonempty vector that is not @code{eq} to any existing vector.
479 479
480@example 480@example
481@group 481@group