diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/ChangeLog | 2 | ||||
| -rw-r--r-- | src/xdisp.c | 2 |
2 files changed, 3 insertions, 1 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 5364408ae30..202108a022f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,5 +1,7 @@ | |||
| 1 | 2004-04-17 Kim F. Storm <storm@cua.dk> | 1 | 2004-04-17 Kim F. Storm <storm@cua.dk> |
| 2 | 2 | ||
| 3 | * xdisp.c (update_overlay_arrows): Fix handling of up_to_date < 0. | ||
| 4 | |||
| 3 | * image.c (PNG_BG_COLOR_SHIFT): Remove. | 5 | * image.c (PNG_BG_COLOR_SHIFT): Remove. |
| 4 | (png_load): Fix calculation of transparent background color on X | 6 | (png_load): Fix calculation of transparent background color on X |
| 5 | and W32 platforms. | 7 | and W32 platforms. |
diff --git a/src/xdisp.c b/src/xdisp.c index 2cd1d548457..a6065b542b7 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -9428,7 +9428,7 @@ update_overlay_arrows (up_to_date) | |||
| 9428 | if (!SYMBOLP (var)) | 9428 | if (!SYMBOLP (var)) |
| 9429 | continue; | 9429 | continue; |
| 9430 | 9430 | ||
| 9431 | if (up_to_date) | 9431 | if (up_to_date > 0) |
| 9432 | { | 9432 | { |
| 9433 | Lisp_Object val = find_symbol_value (var); | 9433 | Lisp_Object val = find_symbol_value (var); |
| 9434 | Fput (var, Qlast_arrow_position, | 9434 | Fput (var, Qlast_arrow_position, |