From cfb5f7e6ac3c8236a97b75fe87de585bd1f45075 Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Sat, 18 Mar 2017 12:29:12 -0400 Subject: [PATCH] * lisp/obarray.el (obarray-size): Avoid compiler warning. --- lisp/obarray.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lisp/obarray.el b/lisp/obarray.el index a4631859925..b1160ebea43 100644 --- a/lisp/obarray.el +++ b/lisp/obarray.el @@ -37,9 +37,9 @@ (make-vector size 0) (signal 'wrong-type-argument '(size 0))))) -(defun obarray-size (obarray) - "Return the number of slots of OBARRAY." - (length obarray)) +(defun obarray-size (ob) + "Return the number of slots of obarray OB." + (length ob)) (defun obarrayp (object) "Return t if OBJECT is an obarray." -- 2.39.5