[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] master cfb5f7e: * lisp/obarray.el (obarray-size): Avoid co
From: |
Stefan Monnier |
Subject: |
[Emacs-diffs] master cfb5f7e: * lisp/obarray.el (obarray-size): Avoid compiler warning. |
Date: |
Sat, 18 Mar 2017 12:29:18 -0400 (EDT) |
branch: master
commit cfb5f7e6ac3c8236a97b75fe87de585bd1f45075
Author: Stefan Monnier <address@hidden>
Commit: Stefan Monnier <address@hidden>
* 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 a463185..b1160eb 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."
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] master cfb5f7e: * lisp/obarray.el (obarray-size): Avoid compiler warning.,
Stefan Monnier <=