diff options
| author | Richard M. Stallman | 2004-03-04 17:06:50 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2004-03-04 17:06:50 +0000 |
| commit | 1c6736585d3e1d67009023a4971d8c91fb4e9fe5 (patch) | |
| tree | 0ec1d8768c97b00a35d17d27b1ff05be8d228704 | |
| parent | c25d9847fd8d3f7e631d4dafc64c70e8db009eb4 (diff) | |
| download | emacs-1c6736585d3e1d67009023a4971d8c91fb4e9fe5.tar.gz emacs-1c6736585d3e1d67009023a4971d8c91fb4e9fe5.zip | |
(Creating Hash): Correct the meaning of t for WEAK in make-hash-table.
| -rw-r--r-- | lispref/hash.texi | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lispref/hash.texi b/lispref/hash.texi index 3c4cb4df19c..bf4555d3903 100644 --- a/lispref/hash.texi +++ b/lispref/hash.texi | |||
| @@ -98,7 +98,7 @@ value in the hash table preserves it from garbage collection. | |||
| 98 | 98 | ||
| 99 | The value, @var{weak}, must be one of @code{nil}, @code{key}, | 99 | The value, @var{weak}, must be one of @code{nil}, @code{key}, |
| 100 | @code{value}, @code{key-or-value}, @code{key-and-value}, or @code{t} | 100 | @code{value}, @code{key-or-value}, @code{key-and-value}, or @code{t} |
| 101 | which is an alias for @code{key-or-value}. If @var{weak} is @code{key} | 101 | which is an alias for @code{key-and-value}. If @var{weak} is @code{key} |
| 102 | then the hash table does not prevent its keys from being collected as | 102 | then the hash table does not prevent its keys from being collected as |
| 103 | garbage (if they are not referenced anywhere else); if a particular key | 103 | garbage (if they are not referenced anywhere else); if a particular key |
| 104 | does get collected, the corresponding association is removed from the | 104 | does get collected, the corresponding association is removed from the |