Source-Changes archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
CVS commit: gnusrc/gnu/dist/toolchain/readline
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.
Home |
Main Index |
Thread Index |
Old Index