1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-30 04:10:54 -08:00

* lisp/obarray.el (obarray-size): Avoid compiler warning.

This commit is contained in:
Stefan Monnier 2017-03-18 12:29:12 -04:00
parent 12f8cfdcae
commit cfb5f7e6ac

View file

@ -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."