Subject: CVS commit: gnusrc/gnu/dist/toolchain/readline
To: None <source-changes@netbsd.org>
From: Matt Thomas <matt@netbsd.org>
List: source-changes
Date: 08/30/2001 05:15:43
Module Name:	gnusrc
Committed By:	matt
Date:		Thu Aug 30 02:15:43 UTC 2001

Modified Files:
	gnusrc/gnu/dist/toolchain/readline: chardefs.h

Log Message:
Do not compare to chars to >= 0 since this will cause a warning where
chars are unsigned.  instead, change it from ((c) < foo && (c) >= 0) to
((unsigned char)(c) < foo) which does the same thing but avoids the warning


To generate a diff of this commit:
cvs rdiff -r1.1.1.1 -r1.2 gnusrc/gnu/dist/toolchain/readline/chardefs.h

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.