diff options
author | Mattias EngdegÄrd <mattiase@acm.org> | 2023-12-30 16:00:28 +0100 |
---|---|---|
committer | Mattias EngdegÄrd <mattiase@acm.org> | 2024-01-13 20:52:08 +0100 |
commit | d2c3a983146b7c0fb0f8b855268effb695d0bbf5 (patch) | |
tree | b372375b37225b15e5378ae971bea1c271fbf756 /lisp/emacs-lisp/comp.el | |
parent | 519c7ca7356fc7f9707b97c143c9495deea5b272 (diff) | |
download | emacs-d2c3a983146b7c0fb0f8b855268effb695d0bbf5.tar.gz emacs-d2c3a983146b7c0fb0f8b855268effb695d0bbf5.tar.bz2 emacs-d2c3a983146b7c0fb0f8b855268effb695d0bbf5.zip |
Hash-table documentation updates (bug#68244)
* doc/lispref/hash.texi (Creating Hash, Other Hash):
Manual updates for make-hash-table, hash-table-rehash-size and
hash-table-rehash-threshold.
* doc/lispref/objects.texi (Hash Table Type): Update example.
* src/fns.c (Fhash_table_rehash_size, Fhash_table_rehash_threshold):
Update doc strings.
* etc/NEWS: Announce changes.
Diffstat (limited to 'lisp/emacs-lisp/comp.el')
-rw-r--r-- | lisp/emacs-lisp/comp.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/emacs-lisp/comp.el b/lisp/emacs-lisp/comp.el index 260bd2f1acb..8441b228898 100644 --- a/lisp/emacs-lisp/comp.el +++ b/lisp/emacs-lisp/comp.el @@ -1134,7 +1134,7 @@ Return value is the fall-through block name." (defun comp-jump-table-optimizable (jmp-table) "Return t if JMP-TABLE can be optimized out." ;; Identify LAP sequences like: - ;; (byte-constant #s(hash-table size 3 test eq rehash-size 1.5 rehash-threshold 0.8125 purecopy t data (created 126 deleted 126 changed 126)) . 24) + ;; (byte-constant #s(hash-table test eq purecopy t data (created 126 deleted 126 changed 126)) . 24) ;; (byte-switch) ;; (TAG 126 . 10) (let ((targets (hash-table-values jmp-table))) |