1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-11-26 07:33:47 +00:00

Improve parameter name

This commit is contained in:
Bozhidar Batsov 2015-05-20 18:50:38 +03:00
parent 7a22bb66a6
commit f73e02c516

View File

@ -140,9 +140,9 @@ to bind a single value, BINDINGS can just be a plain tuple."
(declare (indent 1) (debug if-let))
(list 'if-let bindings (macroexp-progn body)))
(defsubst hash-table-empty-p (table)
"Check whether TABLE is empty (has 0 elements)."
(zerop (hash-table-count table)))
(defsubst hash-table-empty-p (hash-table)
"Check whether HASH-TABLE is empty (has 0 elements)."
(zerop (hash-table-count hash-table)))
(defsubst hash-table-keys (hash-table)
"Return a list of keys in HASH-TABLE."