1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2026-01-05 19:31:02 -08:00

Rename obarray-p to obarrayp

* lisp/obarray.el (obarrayp): New name.
* test/automated/obarray-tests.el: Update the tests.
This commit is contained in:
Nicolas Petton 2015-11-11 18:09:42 +01:00
parent 20aea42934
commit 23036bac7d
2 changed files with 12 additions and 12 deletions

View file

@ -37,7 +37,7 @@
(make-vector size 0)
(signal 'wrong-type-argument '(size 0)))))
(defun obarray-p (object)
(defun obarrayp (object)
"Return t if OBJECT is an obarray."
(and (vectorp object)
(< 0 (length object))))