diff options
Diffstat (limited to 'lisp/obarray.el')
-rw-r--r-- | lisp/obarray.el | 2 |
1 files changed, 1 insertions, 1 deletions
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)))) |