From 23036bac7d470397f364d02eb992d701f1ebab4b Mon Sep 17 00:00:00 2001 From: Nicolas Petton <nicolas@petton.fr> Date: Wed, 11 Nov 2015 18:09:42 +0100 Subject: Rename obarray-p to obarrayp * lisp/obarray.el (obarrayp): New name. * test/automated/obarray-tests.el: Update the tests. --- lisp/obarray.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'lisp/obarray.el') diff --git a/lisp/obarray.el b/lisp/obarray.el index 0e57381a9c5..bf8bb3ee2ca 100644 --- a/lisp/obarray.el +++ b/lisp/obarray.el @@ -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)))) -- cgit v1.2.3