summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEli Zaretskii <eliz@gnu.org>2023-02-05 14:09:35 +0200
committerEli Zaretskii <eliz@gnu.org>2023-02-05 14:09:35 +0200
commit96181ed3f09b12c7e91ddabab5b02f0ee868fa50 (patch)
treec28e5e2c2f1e263e354a3b349d23d8670a63e0d2
parent03d9d18513b6ec50d0022f09d040ce330c918fff (diff)
downloademacs-96181ed3f09b12c7e91ddabab5b02f0ee868fa50.tar.gz
emacs-96181ed3f09b12c7e91ddabab5b02f0ee868fa50.tar.bz2
emacs-96181ed3f09b12c7e91ddabab5b02f0ee868fa50.zip
Document 'plistp'
* doc/lispref/lists.texi (Property Lists): Document 'plistp'. (Bug#61293)
-rw-r--r--doc/lispref/lists.texi5
1 files changed, 5 insertions, 0 deletions
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi
index 44b7058e19d..454fd217ac2 100644
--- a/doc/lispref/lists.texi
+++ b/doc/lispref/lists.texi
@@ -1914,6 +1914,11 @@ properties. Every symbol possesses a list of properties, used to
record miscellaneous information about the symbol; these properties
are stored in the form of a property list. @xref{Symbol Properties}.
+@defun plistp object
+This predicate function returns non-@code{nil} if @var{object} is a
+valid property list.
+@end defun
+
@menu
* Plists and Alists:: Comparison of the advantages of property
lists and association lists.