+2008-04-10 Glenn Morris <rgm@gnu.org>
+
+ * xdisp.c (truncate-partial-width-windows): Doc fix.
+
2008-04-10 Stefan Monnier <monnier@iro.umontreal.ca>
* fileio.c (read_file_name_cleanup, Fread_file_name_internal):
{
double float_amount = XFLOATINT (aggressive) * height;
amount_to_scroll = float_amount;
- if (amount_to_scroll == 0 && float_amount > 0)
+ if (amount_to_scroll == 0 && float_amount >= 0)
amount_to_scroll = 1;
}
}
{
double float_amount = XFLOATINT (aggressive) * height;
amount_to_scroll = float_amount;
- if (amount_to_scroll == 0 && float_amount > 0)
+ if (amount_to_scroll == 0 && float_amount >= 0)
amount_to_scroll = 1;
}
}
DEFVAR_BOOL ("truncate-partial-width-windows",
&truncate_partial_width_windows,
- doc: /* *Non-nil means truncate lines in all windows less than full frame wide. */);
+ doc: /* *Non-nil means truncate lines in all windows less than full frame wide.
+Nil means to respect the value of `truncate-lines'. */);
truncate_partial_width_windows = 1;
DEFVAR_BOOL ("mode-line-inverse-video", &mode_line_inverse_video,