aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBozhidar Batsov2015-05-20 18:50:38 +0300
committerBozhidar Batsov2015-05-20 18:50:38 +0300
commitf73e02c516616b468d874827f092f5f25628178a (patch)
tree70584bb6f4b23bc5d6529c8d1b4a0a7286b85ee7
parent7a22bb66a68d5393a5507ea4226e90090f59fff3 (diff)
downloademacs-f73e02c516616b468d874827f092f5f25628178a.tar.gz
emacs-f73e02c516616b468d874827f092f5f25628178a.zip
Improve parameter name
-rw-r--r--lisp/emacs-lisp/subr-x.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/lisp/emacs-lisp/subr-x.el b/lisp/emacs-lisp/subr-x.el
index dc5b7e9824c..e6d451ac62e 100644
--- a/lisp/emacs-lisp/subr-x.el
+++ b/lisp/emacs-lisp/subr-x.el
@@ -140,9 +140,9 @@ to bind a single value, BINDINGS can just be a plain tuple."
140 (declare (indent 1) (debug if-let)) 140 (declare (indent 1) (debug if-let))
141 (list 'if-let bindings (macroexp-progn body))) 141 (list 'if-let bindings (macroexp-progn body)))
142 142
143(defsubst hash-table-empty-p (table) 143(defsubst hash-table-empty-p (hash-table)
144 "Check whether TABLE is empty (has 0 elements)." 144 "Check whether HASH-TABLE is empty (has 0 elements)."
145 (zerop (hash-table-count table))) 145 (zerop (hash-table-count hash-table)))
146 146
147(defsubst hash-table-keys (hash-table) 147(defsubst hash-table-keys (hash-table)
148 "Return a list of keys in HASH-TABLE." 148 "Return a list of keys in HASH-TABLE."