From: Martin Rudalics Date: Thu, 22 Jun 2017 07:24:06 +0000 (+0200) Subject: Fix make_hash_table calls in lread.c X-Git-Tag: emacs-26.0.90~521^2~17 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=386a3da920482b8cb3e962fb944d135c8a770e26;p=emacs.git Fix make_hash_table calls in lread.c * src/lread.c (readevalloop, read_internal_start): Fix make_hash_table calls to make build succeed. --- diff --git a/src/lread.c b/src/lread.c index b01cbd5c072..8716b86e9bf 100644 --- a/src/lread.c +++ b/src/lread.c @@ -1942,13 +1942,13 @@ readevalloop (Lisp_Object readcharfun, read_objects_map = make_hash_table (hashtest_eq, DEFAULT_HASH_SIZE, DEFAULT_REHASH_SIZE, DEFAULT_REHASH_THRESHOLD, - Qnil, Qnil); + Qnil, false); if (! HASH_TABLE_P (read_objects_completed) || XHASH_TABLE (read_objects_completed)->count) read_objects_completed = make_hash_table (hashtest_eq, DEFAULT_HASH_SIZE, DEFAULT_REHASH_SIZE, DEFAULT_REHASH_THRESHOLD, - Qnil, Qnil); + Qnil, false); if (!NILP (Vpurify_flag) && c == '(') { val = read_list (0, readcharfun); @@ -2159,12 +2159,12 @@ read_internal_start (Lisp_Object stream, Lisp_Object start, Lisp_Object end) || XHASH_TABLE (read_objects_map)->count) read_objects_map = make_hash_table (hashtest_eq, DEFAULT_HASH_SIZE, DEFAULT_REHASH_SIZE, - DEFAULT_REHASH_THRESHOLD, Qnil, Qnil); + DEFAULT_REHASH_THRESHOLD, Qnil, false); if (! HASH_TABLE_P (read_objects_completed) || XHASH_TABLE (read_objects_completed)->count) read_objects_completed = make_hash_table (hashtest_eq, DEFAULT_HASH_SIZE, DEFAULT_REHASH_SIZE, - DEFAULT_REHASH_THRESHOLD, Qnil, Qnil); + DEFAULT_REHASH_THRESHOLD, Qnil, false); if (EQ (Vread_with_symbol_positions, Qt) || EQ (Vread_with_symbol_positions, stream)) Vread_symbol_positions_list = Qnil;