diff options
| author | Kim F. Storm | 2004-04-16 20:11:47 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2004-04-16 20:11:47 +0000 |
| commit | 409368b902aab23359e740d1dd6851cf09d747eb (patch) | |
| tree | d9dcaf626bdf1abb6f16e3c832c9207bd99de0e7 /src | |
| parent | 1f0268990d7d93acb6615494004bacb3160b0d68 (diff) | |
| download | emacs-409368b902aab23359e740d1dd6851cf09d747eb.tar.gz emacs-409368b902aab23359e740d1dd6851cf09d747eb.zip | |
(update_overlay_arrows): Fix handling of up_to_date < 0.
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, |