diff options
author | Bozhidar Batsov <bozhidar@batsov.com> | 2015-05-20 18:50:38 +0300 |
---|---|---|
committer | Bozhidar Batsov <bozhidar@batsov.com> | 2015-05-20 18:50:38 +0300 |
commit | f73e02c516616b468d874827f092f5f25628178a (patch) | |
tree | 70584bb6f4b23bc5d6529c8d1b4a0a7286b85ee7 /lisp/emacs-lisp | |
parent | 7a22bb66a68d5393a5507ea4226e90090f59fff3 (diff) | |
download | emacs-f73e02c516616b468d874827f092f5f25628178a.tar.gz emacs-f73e02c516616b468d874827f092f5f25628178a.tar.bz2 emacs-f73e02c516616b468d874827f092f5f25628178a.zip |
Improve parameter name
Diffstat (limited to 'lisp/emacs-lisp')
-rw-r--r-- | lisp/emacs-lisp/subr-x.el | 6 |
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." (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." |