]> git.eshelyaron.com Git - emacs.git/commitdiff
Add new type predicate plistp
authorLars Ingebrigtsen <larsi@gnus.org>
Mon, 27 Jun 2022 10:36:37 +0000 (12:36 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Mon, 27 Jun 2022 10:36:37 +0000 (12:36 +0200)
* lisp/subr.el (plistp): New type predicate (bug#47427).  This
referred to in the error message from plist-put: "Debugger
entered--Lisp error: (wrong-type-argument plistp (a b c))".

lisp/subr.el
test/lisp/subr-tests.el

index b05471f0c3e28a837ce265e0872a04e8a4f3e370..69cff23cba86d1ca179b215cdf422f39be83e5d6 100644 (file)
@@ -4006,6 +4006,12 @@ Otherwise, return nil."
       (setq object (indirect-function object)))
   (and (subrp object) (eq (cdr (subr-arity object)) 'unevalled)))
 
+(defun plistp (object)
+  "Non-nil if and only if OBJECT is a valid plist."
+  (and (listp object)
+       (proper-list-p object)
+       (zerop (mod (length object) 2))))
+
 (defun macrop (object)
   "Non-nil if and only if OBJECT is a macro."
   (let ((def (indirect-function object)))
index 45dd2d7160359c6c3c7181cec85bde156dc09d38..ced2bc5c4e5ba1a24d3327423c01139b2a2a832f 100644 (file)
@@ -1081,5 +1081,14 @@ final or penultimate step during initialization."))
   (dolist (c (list ?a ?b ?α ?β))
     (should-not (char-uppercase-p c))))
 
+(ert-deftest test-plistp ()
+  (should (plistp nil))
+  (should-not (plistp 1))
+  (should (plistp '(1 2)))
+  (should-not (plistp '(1 . 2)))
+  (should (plistp '(1 2 3 4)))
+  (should-not (plistp '(1 2 3)))
+  (should-not (plistp '(1 2 3 . 4))))
+
 (provide 'subr-tests)
 ;;; subr-tests.el ends here