From 409368b902aab23359e740d1dd6851cf09d747eb Mon Sep 17 00:00:00 2001 From: "Kim F. Storm" Date: Fri, 16 Apr 2004 20:11:47 +0000 Subject: [PATCH] (update_overlay_arrows): Fix handling of up_to_date < 0. --- src/ChangeLog | 2 ++ src/xdisp.c | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/src/ChangeLog b/src/ChangeLog index 5364408ae30..202108a022f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog @@ -1,5 +1,7 @@ 2004-04-17 Kim F. Storm + * 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. 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) 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, -- 2.39.5