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:
parent
12f8cfdcae
commit
cfb5f7e6ac
1 changed files with 3 additions and 3 deletions
|
|
@ -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…
Add table
Add a link
Reference in a new issue