aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJim Blandy1992-12-24 06:16:01 +0000
committerJim Blandy1992-12-24 06:16:01 +0000
commitc2e42adb64d357b97877e5517425f91d81c1932e (patch)
tree841752bada2a2b3a3f69fb0546f08920cbeb7592
parent08b879b49fded655c005ae35e8151de940f13211 (diff)
downloademacs-c2e42adb64d357b97877e5517425f91d81c1932e.tar.gz
emacs-c2e42adb64d357b97877e5517425f91d81c1932e.zip
* 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'.
-rw-r--r--src/floatfns.c2
-rw-r--r--src/textprop.c4
2 files changed, 3 insertions, 3 deletions
diff --git a/src/floatfns.c b/src/floatfns.c
index b6bb4044750..f0bff86a682 100644
--- a/src/floatfns.c
+++ b/src/floatfns.c
@@ -302,7 +302,7 @@ DEFUN ("expt", Fexpt, Sexpt, 2, 2, 0,
302} 302}
303 303
304DEFUN ("log", Flog, Slog, 1, 2, 0, 304DEFUN ("log", Flog, Slog, 1, 2, 0,
305 "Return the natural logarithm of NUM. 305 "Return the natural logarithm of NUM.\n\
306If second optional argument BASE is given, return log NUM using that base.") 306If second optional argument BASE is given, return log NUM using that base.")
307 (num, base) 307 (num, base)
308 register Lisp_Object num, base; 308 register Lisp_Object num, base;
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.")
424DEFUN ("previous-single-property-change", Fprevious_single_property_change, 424DEFUN ("previous-single-property-change", Fprevious_single_property_change,
425 Sprevious_single_property_change, 3, 3, 0, 425 Sprevious_single_property_change, 3, 3, 0,
426 "Return the position preceding POSITION in OBJECT which has a\n\ 426 "Return the position preceding POSITION in OBJECT which has a\n\
427different value for PROPERTY than the text at POSITION. OBJECT may be 427different value for PROPERTY than the text at POSITION. OBJECT may be\n\
428a string or buffer. Returns nil if unsuccessful.") 428a string or buffer. Returns nil if unsuccessful.")
429 (pos, object, prop) 429 (pos, object, prop)
430{ 430{
@@ -788,7 +788,7 @@ void
788syms_of_textprop () 788syms_of_textprop ()
789{ 789{
790 DEFVAR_INT ("interval-balance-threshold", &interval_balance_threshold, 790 DEFVAR_INT ("interval-balance-threshold", &interval_balance_threshold,
791 "Threshold for rebalancing interval trees, expressed as the 791 "Threshold for rebalancing interval trees, expressed as the\n\
792percentage by which the left interval tree should not differ from the right."); 792percentage by which the left interval tree should not differ from the right.");
793 interval_balance_threshold = 8; 793 interval_balance_threshold = 8;
794 794