diff options
| author | Richard M. Stallman | 2001-01-07 01:54:41 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2001-01-07 01:54:41 +0000 |
| commit | 03231f93f3fb4c78ad4ae1771f5c8f3f6376e486 (patch) | |
| tree | 92d3cd074179d6bd3a5011bc24f5700809b789af | |
| parent | c3f2772bfcd3e9bdd2bdbdaee2492f1f5bf5bca3 (diff) | |
| download | emacs-03231f93f3fb4c78ad4ae1771f5c8f3f6376e486.tar.gz emacs-03231f93f3fb4c78ad4ae1771f5c8f3f6376e486.zip | |
Minor fix because a bool-vector's elements can't be characters.
| -rw-r--r-- | lispref/objects.texi | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lispref/objects.texi b/lispref/objects.texi index f62243ed2ef..9b862ae9dcd 100644 --- a/lispref/objects.texi +++ b/lispref/objects.texi | |||
| @@ -545,11 +545,11 @@ considered a sequence. | |||
| 545 | Arrays are further subdivided into strings, vectors, char-tables and | 545 | Arrays are further subdivided into strings, vectors, char-tables and |
| 546 | bool-vectors. Vectors can hold elements of any type, but string | 546 | bool-vectors. Vectors can hold elements of any type, but string |
| 547 | elements must be characters, and bool-vector elements must be @code{t} | 547 | elements must be characters, and bool-vector elements must be @code{t} |
| 548 | or @code{nil}. The characters in a string can have text properties like | 548 | or @code{nil}. Char-tables are like vectors except that they are |
| 549 | characters in a buffer (@pxref{Text Properties}); vectors and | 549 | indexed by any valid character code. The characters in a string can |
| 550 | bool-vectors do not support text properties even when their elements | 550 | have text properties like characters in a buffer (@pxref{Text |
| 551 | happen to be characters. Char-tables are like vectors except that they | 551 | Properties}), but vectors do not support text properties, even when |
| 552 | are indexed by any valid character code. | 552 | their elements happen to be characters. |
| 553 | 553 | ||
| 554 | Lists, strings and the other array types are different, but they have | 554 | Lists, strings and the other array types are different, but they have |
| 555 | important similarities. For example, all have a length @var{l}, and all | 555 | important similarities. For example, all have a length @var{l}, and all |