]> git.eshelyaron.com Git - emacs.git/commitdiff
Document vconcat and the empty vector (Bug#16246).
authorPaul Eggert <eggert@cs.ucla.edu>
Sun, 5 Jan 2014 01:33:33 +0000 (17:33 -0800)
committerPaul Eggert <eggert@cs.ucla.edu>
Sun, 5 Jan 2014 01:33:33 +0000 (17:33 -0800)
* sequences.texi (Vector Functions):
Document behavior better when the result is empty.

doc/lispref/ChangeLog
doc/lispref/sequences.texi

index 2422ee5cc0938fc89bdb8ea3c969661ab1fcb791..124ee8fe1dd1cfba5d9e00fbecb9c0566615bb92 100644 (file)
@@ -1,5 +1,9 @@
 2014-01-05  Paul Eggert  <eggert@cs.ucla.edu>
 
+       Document vconcat and the empty vector (Bug#16246).
+       * sequences.texi (Vector Functions):
+       Document behavior better when the result is empty.
+
        Document behavior of (string-to-number "+@") (Bug#16293).
        * strings.texi (String Conversion): Document behavior of
        string-to-number on invalid strings that begin with "+", too.
index 362737f995605f9a1e597bad9411f5c81b184748..52a1cf5e32c47844486b9433d4cffa292d2fa585 100644 (file)
@@ -471,11 +471,11 @@ each initialized to @var{object}.
 @cindex copying vectors
 This function returns a new vector containing all the elements of
 @var{sequences}.  The arguments @var{sequences} may be true lists,
-vectors, strings or bool-vectors.  If no @var{sequences} are given, an
-empty vector is returned.
+vectors, strings or bool-vectors.  If no @var{sequences} are given,
+the empty vector is returned.
 
-The value is a newly constructed vector that is not @code{eq} to any
-existing vector.
+The value is either the empty vector, or is a newly constructed
+nonempty vector that is not @code{eq} to any existing vector.
 
 @example
 @group