mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2026-09-10 07:46:51 -04:00
* lisp/obarray.el (obarray-size): Avoid compiler warning.
This commit is contained in:
parent
12f8cfdcae
commit
cfb5f7e6ac
|
|
@ -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."
|
||||
|
|
|
|||
Loading…
Reference in a new issue