# HG changeset patch # User Jim Blandy # Date 730392752 0 # Node ID 1cdbdbe2f70adf9ad720311b914e7632bef29c23 # Parent 8ca19160362bc2d8420566e538d8c5c400c73457 * 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. diff -r 8ca19160362b -r 1cdbdbe2f70a src/textprop.c --- a/src/textprop.c Mon Feb 22 14:51:39 1993 +0000 +++ b/src/textprop.c Mon Feb 22 14:52:32 1993 +0000 @@ -349,10 +349,10 @@ } 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;