summaryrefslogtreecommitdiff
path: root/src/textprop.c
diff options
context:
space:
mode:
authorJim Blandy <jimb@redhat.com>1992-12-24 06:16:01 +0000
committerJim Blandy <jimb@redhat.com>1992-12-24 06:16:01 +0000
commitc2e42adb64d357b97877e5517425f91d81c1932e (patch)
tree841752bada2a2b3a3f69fb0546f08920cbeb7592 /src/textprop.c
parent08b879b49fded655c005ae35e8151de940f13211 (diff)
downloademacs-c2e42adb64d357b97877e5517425f91d81c1932e.tar.gz
* floatfns.c (Flog): Fix unescaped newline in string.
* frame.c (Fnext_frame): Same. * textprop.c (Fprevious_single_property_change): Same. (syms_of_textprop): Same, for DEFVAR for `interval_balance_threshold'.
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 7f454656f6a..e3eb3e2ae4c 100644
--- a/src/textprop.c
+++ b/src/textprop.c
@@ -424,7 +424,7 @@ Returns nil if unsuccessful.")
DEFUN ("previous-single-property-change", Fprevious_single_property_change,
Sprevious_single_property_change, 3, 3, 0,
"Return the position preceding POSITION in OBJECT which has a\n\
-different value for PROPERTY than the text at POSITION. OBJECT may be
+different value for PROPERTY than the text at POSITION. OBJECT may be\n\
a string or buffer. Returns nil if unsuccessful.")
(pos, object, prop)
{
@@ -788,7 +788,7 @@ void
syms_of_textprop ()
{
DEFVAR_INT ("interval-balance-threshold", &interval_balance_threshold,
- "Threshold for rebalancing interval trees, expressed as the
+ "Threshold for rebalancing interval trees, expressed as the\n\
percentage by which the left interval tree should not differ from the right.");
interval_balance_threshold = 8;