emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] master f73e02c: Improve parameter name


From: Bozhidar Batsov
Subject: [Emacs-diffs] master f73e02c: Improve parameter name
Date: Wed, 20 May 2015 15:50:53 +0000

branch: master
commit f73e02c516616b468d874827f092f5f25628178a
Author: Bozhidar Batsov <address@hidden>
Commit: Bozhidar Batsov <address@hidden>

    Improve parameter name
---
 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 dc5b7e9..e6d451a 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."



reply via email to

[Prev in Thread] Current Thread [Next in Thread]