Mercurial > emacs
changeset 44219:dfaa607f640f
(Flax_plist_put): Doc fix.
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Fri, 29 Mar 2002 00:04:30 +0000 |
parents | 1940f37f5d5c |
children | 69735f5e2a07 |
files | src/fns.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/fns.c Fri Mar 29 00:03:45 2002 +0000 +++ b/src/fns.c Fri Mar 29 00:04:30 2002 +0000 @@ -2032,7 +2032,7 @@ DEFUN ("lax-plist-put", Flax_plist_put, Slax_plist_put, 3, 3, 0, doc: /* Change value in PLIST of PROP to VAL, comparing with `equal'. PLIST is a property list, which is a list of the form -\(PROP1 VALUE1 PROP2 VALUE2 ...). PROP is a symbol and VAL is any object. +\(PROP1 VALUE1 PROP2 VALUE2 ...). PROP and VAL are any objects. If PROP is already a property on the list, its value is set to VAL, otherwise the new PROP VAL pair is added. The new plist is returned; use `(setq x (lax-plist-put x prop val))' to be sure to use the new value.