diff options
author | Richard M. Stallman <rms@gnu.org> | 2003-08-13 17:26:21 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 2003-08-13 17:26:21 +0000 |
commit | 71b2cc825dc21e6435eaca1b98452888b94daebd (patch) | |
tree | a205a2a2956b68523b1c571a3fbc6e1460b951f0 /lispref/symbols.texi | |
parent | e9b885791d90cc897ab1c8cc64b9c7eef952719c (diff) | |
download | emacs-71b2cc825dc21e6435eaca1b98452888b94daebd.tar.gz |
(Other Plists): Add lax-plist-get, lax-plist-put.
Diffstat (limited to 'lispref/symbols.texi')
-rw-r--r-- | lispref/symbols.texi | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/lispref/symbols.texi b/lispref/symbols.texi index ae4dffec89c..ee7eaf92f1e 100644 --- a/lispref/symbols.texi +++ b/lispref/symbols.texi @@ -560,6 +560,16 @@ in the place where you got @var{plist}. For example, (plist-put (symbol-plist symbol) prop value))) @end example +@defun lax-plist-get plist property +Like @code{plist-get} except that it compares properties +using @code{equal} instead of @code{eq}. +@end defun + +@defun lax-plist-put plist property value +Like @code{plist-put} except that it compares properties +using @code{equal} instead of @code{eq}. +@end defun + @defun plist-member plist property @tindex plist-member This returns non-@code{nil} if @var{plist} contains the given |