|
Re: No newline at end of file warnings
|
11/04/2007 9:29 AM
post2443
|
Re: No newline at end of file warnings
OK, after dumping the problem files in hex it seems the last character is a SPACE, so the end of the file might look
like this:
}<CR><LF>
<SP>
or in hex
7D 0D 0A 20
Maybe when return was typed on the last line a space was to the right of the cursor, and the space was then placed as
the last character in the file. If so, that sequence of events would have had to happen in dozens of files here in many
different projects by several different programmers, all using different editors.
This hardly seems to warrant a warning regardless of what C99 says.
|
|
|