aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/obarray.el
diff options
context:
space:
mode:
authorNicolas Petton2015-11-11 18:09:42 +0100
committerNicolas Petton2015-11-11 18:09:42 +0100
commit23036bac7d470397f364d02eb992d701f1ebab4b (patch)
treebb21bbf4afe84cb764565be006ef9084768d5a4a /lisp/obarray.el
parent20aea4293439281570c5c05d3f54bc5b261a4d0f (diff)
downloademacs-23036bac7d470397f364d02eb992d701f1ebab4b.tar.gz
emacs-23036bac7d470397f364d02eb992d701f1ebab4b.zip
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.el2
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 @@
37 (make-vector size 0) 37 (make-vector size 0)
38 (signal 'wrong-type-argument '(size 0))))) 38 (signal 'wrong-type-argument '(size 0)))))
39 39
40(defun obarray-p (object) 40(defun obarrayp (object)
41 "Return t if OBJECT is an obarray." 41 "Return t if OBJECT is an obarray."
42 (and (vectorp object) 42 (and (vectorp object)
43 (< 0 (length object)))) 43 (< 0 (length object))))