summaryrefslogtreecommitdiff
path: root/lisp/emacs-lisp
diff options
context:
space:
mode:
authorMattias EngdegÄrd <mattiase@acm.org>2023-12-30 15:54:32 +0100
committerMattias EngdegÄrd <mattiase@acm.org>2024-01-13 20:50:39 +0100
commit519c7ca7356fc7f9707b97c143c9495deea5b272 (patch)
tree8ce0de3df4397233fa34db835999c309dcc75c57 /lisp/emacs-lisp
parent1998039f7a8f2ecc884a6fed85c0cc1ce06f83e2 (diff)
downloademacs-519c7ca7356fc7f9707b97c143c9495deea5b272.tar.gz
emacs-519c7ca7356fc7f9707b97c143c9495deea5b272.tar.bz2
emacs-519c7ca7356fc7f9707b97c143c9495deea5b272.zip
Don't pretend that hash-table-size is useful
* lisp/emacs-lisp/shortdoc.el (hash-table): Remove hash-table-size entry. * doc/lispref/hash.texi (Other Hash): * src/fns.c (Fhash_table_size): Make it clear that hash-table-size is probably not worth using.
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r--lisp/emacs-lisp/shortdoc.el5
1 files changed, 1 insertions, 4 deletions
diff --git a/lisp/emacs-lisp/shortdoc.el b/lisp/emacs-lisp/shortdoc.el
index 17cbf6b2d31..a6a49c72f74 100644
--- a/lisp/emacs-lisp/shortdoc.el
+++ b/lisp/emacs-lisp/shortdoc.el
@@ -572,10 +572,7 @@ A FUNC form can have any number of `:no-eval' (or `:no-value'),
:result-string "#s(hash-table ...)")
(hash-table-count
:no-eval (hash-table-count table)
- :eg-result 15)
- (hash-table-size
- :no-eval (hash-table-size table)
- :eg-result 65))
+ :eg-result 15))
(define-short-documentation-group list
"Making Lists"