aboutsummaryrefslogtreecommitdiffstats
path: root/src/textprop.c
diff options
context:
space:
mode:
authorJim Blandy1993-02-22 14:52:32 +0000
committerJim Blandy1993-02-22 14:52:32 +0000
commit0df58c91cfa73fc04689ca5c36096274fd414871 (patch)
treec5b55f777ba59e2ae0a6ac6ab235d611a9aa3668 /src/textprop.c
parent1aaaff21ef0a4d59c5bec507159ea3778313f4e0 (diff)
downloademacs-0df58c91cfa73fc04689ca5c36096274fd414871.tar.gz
emacs-0df58c91cfa73fc04689ca5c36096274fd414871.zip
* 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.
Diffstat (limited to 'src/textprop.c')
-rw-r--r--src/textprop.c4
1 files 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.")
349} 349}
350 350
351DEFUN ("get-text-property", Fget_text_property, Sget_text_property, 2, 3, 0, 351DEFUN ("get-text-property", Fget_text_property, Sget_text_property, 2, 3, 0,
352 "Return the value of position POS's property PROP, in OBJECT. 352 "Return the value of position POS's property PROP, in OBJECT.\n\
353OBJECT is optional and defaults to the current buffer.") 353OBJECT is optional and defaults to the current buffer.")
354 (pos, prop, object) 354 (pos, prop, object)
355 Lisp_Object sym, object; 355 Lisp_Object pos, object;
356 register Lisp_Object prop; 356 register Lisp_Object prop;
357{ 357{
358 register INTERVAL i; 358 register INTERVAL i;