diff options
author | Chong Yidong <cyd@gnu.org> | 2012-12-05 11:52:08 +0800 |
---|---|---|
committer | Chong Yidong <cyd@gnu.org> | 2012-12-05 11:52:08 +0800 |
commit | a20ae0b91d9075a9ab13448b93ceffeaf50ddf29 (patch) | |
tree | b6dc9dd2227dd6365e5d8b9676c364312e9cfd62 /doc/lispref/lists.texi | |
parent | 0b2224850be3a839c6125cda44934d494f8b1f81 (diff) | |
download | emacs-a20ae0b91d9075a9ab13448b93ceffeaf50ddf29.tar.gz |
Minor fixes for Lisp manual.
* lists.texi (Plist Access): Move put example to Symbol Plists.
* symbols.texi (Standard Properties): Fix typo.
Diffstat (limited to 'doc/lispref/lists.texi')
-rw-r--r-- | doc/lispref/lists.texi | 8 |
1 files changed, 0 insertions, 8 deletions
diff --git a/doc/lispref/lists.texi b/doc/lispref/lists.texi index 1a3d85b9b35..d2eea67da40 100644 --- a/doc/lispref/lists.texi +++ b/doc/lispref/lists.texi @@ -1936,14 +1936,6 @@ in the place where you got @var{plist}. For example, @end example @end defun - You could define @code{put} in terms of @code{plist-put} as follows: - -@example -(defun put (symbol prop value) - (setplist symbol - (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}. |