summaryrefslogtreecommitdiff
path: root/src/fns.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1995-04-06 18:57:58 +0000
committerKarl Heuer <kwzh@gnu.org>1995-04-06 18:57:58 +0000
commitaf7f78ead88752232d3269354e7ea5ea2c5c719a (patch)
tree99af8ad31e9a1a5eda43c88ea3c7d529b2711afa /src/fns.c
parentb335f8453920173743c589f56d50d9c8b7414e26 (diff)
downloademacs-af7f78ead88752232d3269354e7ea5ea2c5c719a.tar.gz
(Fplist_put): Fix missing \n\.
Diffstat (limited to 'src/fns.c')
-rw-r--r--src/fns.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/fns.c b/src/fns.c
index b59045889cc..ede57ac6089 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -869,7 +869,7 @@ DEFUN ("plist-put", Fplist_put, Splist_put, 3, 3, 0,
PLIST is a property list, which is a list of the form\n\
\(PROP1 VALUE1 PROP2 VALUE2 ...). PROP is a symbol and VAL is any object.\n\
If PROP is already a property on the list, its value is set to VAL,\n\
-otherwise the new PROP VAL pair is added. The new plist is returned;
+otherwise the new PROP VAL pair is added. The new plist is returned;\n\
use `(setq x (plist-put x prop val))' to be sure to use the new value.\n\
The PLIST is modified by side effects.")
(plist, prop, val)