Overview
Comment: | Updated to process stray slashes more liberally |
---|---|
Timelines: | family | ancestors | descendants | both | trunk |
Files: | files | file ages | folders |
SHA1: |
a67fcde5985e5e6dc10fc40a9a8923a1 |
User & Date: | rkeene on 2014-06-21 05:54:10 |
Other Links: | manifest | tags |
Context
2014-06-21
| ||
05:55 | Updated to use "tcc" to produce object files on Mac OS X check-in: 929a77707a user: rkeene tags: trunk | |
05:54 | Updated to process stray slashes more liberally check-in: a67fcde598 user: rkeene tags: trunk | |
05:23 | Updated to use fully qualified path names for headers to be included check-in: 34edc27785 user: rkeene tags: trunk | |
Changes
Added build/tcc-patches/0.9.26/tcc-0.9.26-fixstrayfix.diff version [f51f2ac6e8].
> > > > > > > > > > > > > > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 | diff -uNr tcc-0.9.26.orig/tccpp.c tcc-0.9.26-1fixstrayfix/tccpp.c --- tcc-0.9.26.orig/tccpp.c 2013-02-15 08:24:00.000000000 -0600 +++ tcc-0.9.26-1fixstrayfix/tccpp.c 2014-06-21 00:51:00.900011999 -0500 @@ -406,6 +406,10 @@ { while (ch == '\\') { inp(); + if (ch != '\n' && ch != '\r') { + break; + } + if (ch == '\n') { file->line_num++; inp(); |