Re: unicode in gcc 4.6.1 output

2011-07-13 Thread Ian Lance Taylor
"Paulo J. Matos" writes: > As part of a testsuite script I am parsing GCC's output and I noticed > that format specifier %qs quotes the string by surrounding it with > unicode characters. I can't find where this %qs is defined so that I > can try and override it to quote with '%s' or `%s'. Anythi

Re: unicode in gcc 4.6.1 output

2011-07-13 Thread Basile Starynkevitch
On Wed, 13 Jul 2011 15:55:58 +0100 Jonathan Wakely wrote: > On 13 July 2011 15:18, Paulo J. Matos wrote: > > Hi all, > > > > As part of a testsuite script I am parsing GCC's output and I noticed that > > format specifier %qs quotes the string by surrounding it with unicode > > characters. I can't

Re: unicode in gcc 4.6.1 output

2011-07-13 Thread Jonathan Wakely
On 13 July 2011 15:18, Paulo J. Matos wrote: > Hi all, > > As part of a testsuite script I am parsing GCC's output and I noticed that > format specifier %qs quotes the string by surrounding it with unicode > characters. I can't find where this %qs is defined so that I can try and > override it to q

unicode in gcc 4.6.1 output

2011-07-13 Thread Paulo J. Matos
Hi all, As part of a testsuite script I am parsing GCC's output and I noticed that format specifier %qs quotes the string by surrounding it with unicode characters. I can't find where this %qs is defined so that I can try and override it to quote with '%s' or `%s'. Anything but unicode. Any