From f4a938df11f154a52502e36aaf56cc6e77e3a94c Mon Sep 17 00:00:00 2001 From: nyamatongwe Date: Sat, 21 Feb 2004 21:54:52 +0000 Subject: Change to avoid signed/unsigned character issue. --- src/CallTip.cxx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src') diff --git a/src/CallTip.cxx b/src/CallTip.cxx index 2f299afff..93e888d0e 100644 --- a/src/CallTip.cxx +++ b/src/CallTip.cxx @@ -49,7 +49,7 @@ void CallTip::RefreshColourPalette(Palette &pal, bool want) { } static bool IsArrowCharacter(char ch) { - return (ch >= 0) && (ch <= '\002'); + return (ch == 0) || (ch == '\001') || (ch == '\002'); } void CallTip::DrawChunk(Surface *surface, int &x, const char *s, -- cgit v1.2.3