aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2008-08-05 20:59:57 +0000
committerChong Yidong2008-08-05 20:59:57 +0000
commitc5b9f22cd58d1bf242dc62ec0e52f44cef4d03a5 (patch)
tree3155bd80b2417d45eb1149d080a7e666f31ae61f
parent7879d87c2f2272eee6da6b9427dd38d67c038bbe (diff)
downloademacs-c5b9f22cd58d1bf242dc62ec0e52f44cef4d03a5.tar.gz
emacs-c5b9f22cd58d1bf242dc62ec0e52f44cef4d03a5.zip
(Other Plists): Fix incorrect example. Suggested by Florian Beck.
-rw-r--r--lispref/symbols.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/lispref/symbols.texi b/lispref/symbols.texi
index 540f14cc950..92f2e74f548 100644
--- a/lispref/symbols.texi
+++ b/lispref/symbols.texi
@@ -537,8 +537,8 @@ stored in the property list @var{plist}. For example,
537 @result{} 4 537 @result{} 4
538(plist-get '(foo 4 bad) 'foo) 538(plist-get '(foo 4 bad) 'foo)
539 @result{} 4 539 @result{} 4
540(plist-get '(foo 4 bad) 'bar) 540(plist-get '(foo 4 bad) 'bad)
541 @result{} @code{wrong-type-argument} error 541 @result{} @code{nil}
542@end example 542@end example
543 543
544It accepts a malformed @var{plist} argument and always returns @code{nil} 544It accepts a malformed @var{plist} argument and always returns @code{nil}