diff options
| -rw-r--r-- | doc/lispref/ChangeLog | 4 | ||||
| -rw-r--r-- | doc/lispref/sequences.texi | 8 |
2 files changed, 8 insertions, 4 deletions
diff --git a/doc/lispref/ChangeLog b/doc/lispref/ChangeLog index 2422ee5cc09..124ee8fe1dd 100644 --- a/doc/lispref/ChangeLog +++ b/doc/lispref/ChangeLog | |||
| @@ -1,5 +1,9 @@ | |||
| 1 | 2014-01-05 Paul Eggert <eggert@cs.ucla.edu> | 1 | 2014-01-05 Paul Eggert <eggert@cs.ucla.edu> |
| 2 | 2 | ||
| 3 | Document vconcat and the empty vector (Bug#16246). | ||
| 4 | * sequences.texi (Vector Functions): | ||
| 5 | Document behavior better when the result is empty. | ||
| 6 | |||
| 3 | Document behavior of (string-to-number "+@") (Bug#16293). | 7 | Document behavior of (string-to-number "+@") (Bug#16293). |
| 4 | * strings.texi (String Conversion): Document behavior of | 8 | * strings.texi (String Conversion): Document behavior of |
| 5 | string-to-number on invalid strings that begin with "+", too. | 9 | string-to-number on invalid strings that begin with "+", too. |
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 |
| 472 | This function returns a new vector containing all the elements of | 472 | This 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, |
| 474 | vectors, strings or bool-vectors. If no @var{sequences} are given, an | 474 | vectors, strings or bool-vectors. If no @var{sequences} are given, |
| 475 | empty vector is returned. | 475 | the empty vector is returned. |
| 476 | 476 | ||
| 477 | The value is a newly constructed vector that is not @code{eq} to any | 477 | The value is either the empty vector, or is a newly constructed |
| 478 | existing vector. | 478 | nonempty vector that is not @code{eq} to any existing vector. |
| 479 | 479 | ||
| 480 | @example | 480 | @example |
| 481 | @group | 481 | @group |