diff options
| author | Richard M. Stallman | 2003-08-13 17:26:21 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 2003-08-13 17:26:21 +0000 |
| commit | 55ccf8be3783bb59e3d54c770e2ce7a271474854 (patch) | |
| tree | 820188af91c46ff952dc83e3b3aecb2e88a9c961 | |
| parent | 2683ea7319f8470e6adc3fdedd011c8ec738aa4b (diff) | |
| download | emacs-55ccf8be3783bb59e3d54c770e2ce7a271474854.tar.gz emacs-55ccf8be3783bb59e3d54c770e2ce7a271474854.zip | |
(Other Plists): Add lax-plist-get, lax-plist-put.
| -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, | |||
| 560 | (plist-put (symbol-plist symbol) prop value))) | 560 | (plist-put (symbol-plist symbol) prop value))) |
| 561 | @end example | 561 | @end example |
| 562 | 562 | ||
| 563 | @defun lax-plist-get plist property | ||
| 564 | Like @code{plist-get} except that it compares properties | ||
| 565 | using @code{equal} instead of @code{eq}. | ||
| 566 | @end defun | ||
| 567 | |||
| 568 | @defun lax-plist-put plist property value | ||
| 569 | Like @code{plist-put} except that it compares properties | ||
| 570 | using @code{equal} instead of @code{eq}. | ||
| 571 | @end defun | ||
| 572 | |||
| 563 | @defun plist-member plist property | 573 | @defun plist-member plist property |
| 564 | @tindex plist-member | 574 | @tindex plist-member |
| 565 | This returns non-@code{nil} if @var{plist} contains the given | 575 | This returns non-@code{nil} if @var{plist} contains the given |