summaryrefslogtreecommitdiff
path: root/lisp/obarray.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/obarray.el')
-rw-r--r--lisp/obarray.el6
1 files 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."