* indent.c (Fvertical_motion): Fix == vs = typo.
This commit is contained in:
parent
6bf7006fa2
commit
1260aef1ae
2 changed files with 5 additions and 1 deletions
|
@ -1,3 +1,7 @@
|
|||
2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
|
||||
|
||||
* indent.c (Fvertical_motion): Fix == vs = typo.
|
||||
|
||||
2011-09-24 Eli Zaretskii <eliz@gnu.org>
|
||||
|
||||
* dispnew.c (syms_of_display) <redisplay-dont-pause>: Default
|
||||
|
|
|
@ -2041,7 +2041,7 @@ whether or not it is currently displayed in some window. */)
|
|||
it_overshoot_count++;
|
||||
}
|
||||
if (!it_overshoot_count)
|
||||
it_overshoot_count == -1;
|
||||
it_overshoot_count = -1;
|
||||
}
|
||||
else
|
||||
it_overshoot_count =
|
||||
|
|
Loading…
Add table
Reference in a new issue