aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorKim F. Storm2002-03-29 00:04:30 +0000
committerKim F. Storm2002-03-29 00:04:30 +0000
commit9e76ae0559ab61a50dd7a70c7302c82fa80215da (patch)
treeba00197c00137c2c7375222d3824978b8a812ecb /src
parentf9b33abbd5abf76ae148c5a0fdd6148320c35457 (diff)
downloademacs-9e76ae0559ab61a50dd7a70c7302c82fa80215da.tar.gz
emacs-9e76ae0559ab61a50dd7a70c7302c82fa80215da.zip
(Flax_plist_put): Doc fix.
Diffstat (limited to 'src')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index cb5da8d969d..33b4b72cc96 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -2032,7 +2032,7 @@ one of the properties on the list. */)
2032DEFUN ("lax-plist-put", Flax_plist_put, Slax_plist_put, 3, 3, 0, 2032DEFUN ("lax-plist-put", Flax_plist_put, Slax_plist_put, 3, 3, 0,
2033 doc: /* Change value in PLIST of PROP to VAL, comparing with `equal'. 2033 doc: /* Change value in PLIST of PROP to VAL, comparing with `equal'.
2034PLIST is a property list, which is a list of the form 2034PLIST is a property list, which is a list of the form
2035\(PROP1 VALUE1 PROP2 VALUE2 ...). PROP is a symbol and VAL is any object. 2035\(PROP1 VALUE1 PROP2 VALUE2 ...). PROP and VAL are any objects.
2036If PROP is already a property on the list, its value is set to VAL, 2036If PROP is already a property on the list, its value is set to VAL,
2037otherwise the new PROP VAL pair is added. The new plist is returned; 2037otherwise the new PROP VAL pair is added. The new plist is returned;
2038use `(setq x (lax-plist-put x prop val))' to be sure to use the new value. 2038use `(setq x (lax-plist-put x prop val))' to be sure to use the new value.