mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-24 14:30:43 -08:00
* 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'.
This commit is contained in:
parent
08b879b49f
commit
c2e42adb64
2 changed files with 3 additions and 3 deletions
|
|
@ -302,7 +302,7 @@ DEFUN ("expt", Fexpt, Sexpt, 2, 2, 0,
|
|||
}
|
||||
|
||||
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;
|
||||
|
|
|
|||
|
|
@ -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;
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue