aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog3
-rw-r--r--src/dispnew.c4
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 7c7eaf6c779..4eac1d78db7 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,5 +1,8 @@
12011-09-24 Eli Zaretskii <eliz@gnu.org> 12011-09-24 Eli Zaretskii <eliz@gnu.org>
2 2
3 * dispnew.c (syms_of_display) <redisplay-dont-pause>: Default
4 value is now t. Doc fix.
5
3 * indent.c (Fvertical_motion): Compute and apply the overshoot 6 * indent.c (Fvertical_motion): Compute and apply the overshoot
4 logic when moving up, not only when moving down. Fix the 7 logic when moving up, not only when moving down. Fix the
5 confusing name and values of the it_overshoot_expected variable; 8 confusing name and values of the it_overshoot_expected variable;
diff --git a/src/dispnew.c b/src/dispnew.c
index 958420d3081..51b17fc0f11 100644
--- a/src/dispnew.c
+++ b/src/dispnew.c
@@ -6494,8 +6494,8 @@ See `buffer-display-table' for more information. */);
6494 Vstandard_display_table = Qnil; 6494 Vstandard_display_table = Qnil;
6495 6495
6496 DEFVAR_BOOL ("redisplay-dont-pause", redisplay_dont_pause, 6496 DEFVAR_BOOL ("redisplay-dont-pause", redisplay_dont_pause,
6497 doc: /* *Non-nil means update isn't paused when input is detected. */); 6497 doc: /* *Non-nil means display update isn't paused when input is detected. */);
6498 redisplay_dont_pause = 0; 6498 redisplay_dont_pause = 1;
6499 6499
6500#if PERIODIC_PREEMPTION_CHECKING 6500#if PERIODIC_PREEMPTION_CHECKING
6501 DEFVAR_LISP ("redisplay-preemption-period", Vredisplay_preemption_period, 6501 DEFVAR_LISP ("redisplay-preemption-period", Vredisplay_preemption_period,