(update_overlay_arrows): Fix handling of up_to_date < 0.
This commit is contained in:
parent
1f0268990d
commit
409368b902
2 changed files with 3 additions and 1 deletions
|
@ -1,5 +1,7 @@
|
|||
2004-04-17 Kim F. Storm <storm@cua.dk>
|
||||
|
||||
* xdisp.c (update_overlay_arrows): Fix handling of up_to_date < 0.
|
||||
|
||||
* image.c (PNG_BG_COLOR_SHIFT): Remove.
|
||||
(png_load): Fix calculation of transparent background color on X
|
||||
and W32 platforms.
|
||||
|
|
|
@ -9428,7 +9428,7 @@ update_overlay_arrows (up_to_date)
|
|||
if (!SYMBOLP (var))
|
||||
continue;
|
||||
|
||||
if (up_to_date)
|
||||
if (up_to_date > 0)
|
||||
{
|
||||
Lisp_Object val = find_symbol_value (var);
|
||||
Fput (var, Qlast_arrow_position,
|
||||
|
|
Loading…
Add table
Reference in a new issue