diff options
author | Nicolas Petton <nicolas@petton.fr> | 2015-11-11 18:09:42 +0100 |
---|---|---|
committer | Nicolas Petton <nicolas@petton.fr> | 2015-11-11 18:09:42 +0100 |
commit | 23036bac7d470397f364d02eb992d701f1ebab4b (patch) | |
tree | bb21bbf4afe84cb764565be006ef9084768d5a4a /lisp/obarray.el | |
parent | 20aea4293439281570c5c05d3f54bc5b261a4d0f (diff) | |
download | emacs-23036bac7d470397f364d02eb992d701f1ebab4b.tar.gz |
Rename obarray-p to obarrayp
* lisp/obarray.el (obarrayp): New name.
* test/automated/obarray-tests.el: Update the tests.
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)))) |