aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChong Yidong2008-08-05 20:58:29 +0000
committerChong Yidong2008-08-05 20:58:29 +0000
commitaf20f0ebd6db59eb374d391eb2ad3f58fab6dafe (patch)
treeb98b34fea3491fcbe5b1a53729541f72cf11e50c
parent6be001eed6e3d0ab624ce26b2125bc74084be3af (diff)
downloademacs-af20f0ebd6db59eb374d391eb2ad3f58fab6dafe.tar.gz
emacs-af20f0ebd6db59eb374d391eb2ad3f58fab6dafe.zip
(Other Plists): Fix incorrect example. Suggested by Florian Beck.
-rw-r--r--doc/lispref/symbols.texi4
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/lispref/symbols.texi b/doc/lispref/symbols.texi
index edb111eb098..8b0b091dc8b 100644
--- a/doc/lispref/symbols.texi
+++ b/doc/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{} 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}