From 0df58c91cfa73fc04689ca5c36096274fd414871 Mon Sep 17 00:00:00 2001 From: Jim Blandy Date: Mon, 22 Feb 1993 14:52:32 +0000 Subject: [PATCH] * textprop.c (Fget_text_property): Fix typo in function's declaration. * keyboard.c (Fread_key_sequence): Backslash the newlines in this docstring. * textprop.c (Fget_text_property): Same. --- src/textprop.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/textprop.c b/src/textprop.c index ab058fa60aa..d8a674a1e70 100644 --- a/src/textprop.c +++ b/src/textprop.c @@ -349,10 +349,10 @@ defaults to the current buffer.") } DEFUN ("get-text-property", Fget_text_property, Sget_text_property, 2, 3, 0, - "Return the value of position POS's property PROP, in OBJECT. + "Return the value of position POS's property PROP, in OBJECT.\n\ OBJECT is optional and defaults to the current buffer.") (pos, prop, object) - Lisp_Object sym, object; + Lisp_Object pos, object; register Lisp_Object prop; { register INTERVAL i;