aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorChong Yidong2010-08-13 20:39:08 -0400
committerChong Yidong2010-08-13 20:39:08 -0400
commit79d6f59e9651bc70cd0f025cb980b3a121ce8ab2 (patch)
treec1a96884bd7126008cc9d0db933b63b5f67f4dfe /src
parent1c9b41290f206173f1031572094ec6373c265c0b (diff)
downloademacs-79d6f59e9651bc70cd0f025cb980b3a121ce8ab2.tar.gz
emacs-79d6f59e9651bc70cd0f025cb980b3a121ce8ab2.zip
* fns.c (Fmake_hash_table): Doc fix (Bug#6851).
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog4
-rw-r--r--src/fns.c6
2 files changed, 7 insertions, 3 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index f13e5105368..648e303d543 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,7 @@
12010-08-14 Chong Yidong <cyd@stupidchicken.com>
2
3 * fns.c (Fmake_hash_table): Doc fix (Bug#6851).
4
12010-08-13 Jason Rumney <jasonr@gnu.org> 52010-08-13 Jason Rumney <jasonr@gnu.org>
2 6
3 * w32menu.c (simple_dialog_show): Use unicode message box if available. 7 * w32menu.c (simple_dialog_show): Use unicode message box if available.
diff --git a/src/fns.c b/src/fns.c
index 501867552f8..0c5eda951fa 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -4419,9 +4419,9 @@ keys. Default is `eql'. Predefined are the tests `eq', `eql', and
4419Default is 65. 4419Default is 65.
4420 4420
4421:rehash-size REHASH-SIZE - Indicates how to expand the table when it 4421:rehash-size REHASH-SIZE - Indicates how to expand the table when it
4422fills up. If REHASH-SIZE is an integer, add that many space. If it 4422fills up. If REHASH-SIZE is an integer, increase the size by that
4423is a float, it must be > 1.0, and the new size is computed by 4423amount. If it is a float, it must be > 1.0, and the new size is the
4424multiplying the old size with that factor. Default is 1.5. 4424old size multiplied by that factor. Default is 1.5.
4425 4425
4426:rehash-threshold THRESHOLD -- THRESHOLD must a float > 0, and <= 1.0. 4426:rehash-threshold THRESHOLD -- THRESHOLD must a float > 0, and <= 1.0.
4427Resize the hash table when the ratio (number of entries / table size) 4427Resize the hash table when the ratio (number of entries / table size)