# HG changeset patch # User Jim Blandy # Date 725177761 0 # Node ID cd23f7ef1bd0165dc0e3cdb83a2894b449514c7a # Parent 2a1dbc7de50766e0c474c3bfa5711ae355ba64c6 * 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'. diff -r 2a1dbc7de507 -r cd23f7ef1bd0 src/floatfns.c --- a/src/floatfns.c Thu Dec 24 06:13:57 1992 +0000 +++ b/src/floatfns.c Thu Dec 24 06:16:01 1992 +0000 @@ -302,7 +302,7 @@ } DEFUN ("log", Flog, Slog, 1, 2, 0, - "Return the natural logarithm of NUM. + "Return the natural logarithm of NUM.\n\ If second optional argument BASE is given, return log NUM using that base.") (num, base) register Lisp_Object num, base; diff -r 2a1dbc7de507 -r cd23f7ef1bd0 src/textprop.c --- a/src/textprop.c Thu Dec 24 06:13:57 1992 +0000 +++ b/src/textprop.c Thu Dec 24 06:16:01 1992 +0000 @@ -424,7 +424,7 @@ 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 @@ 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;