On Tue, 22 Jun 2010 04:30:12 +1000 (EST)
Bruce Evans wrote:
> On Mon, 21 Jun 2010, Alexander Kabaev wrote:
>
> > On Tue, 22 Jun 2010 03:22:40 +1000 (EST)
> > Bruce Evans wrote:
> >
> >
> > DTrace _does_ try to unput EOF though and apparently gets away with
> > it on Solaris, so while yor versi
In message: <20100621133340.75017...@kan.dnsalias.net>
Alexander Kabaev writes:
: DTrace _does_ try to unput EOF though and apparently gets away with it
: on Solaris, so while yor version is correct, it is also useless.
Then DTrace can't possibly work on ARM.
Warner
_
On Mon, 21 Jun 2010, Alexander Kabaev wrote:
On Tue, 22 Jun 2010 03:22:40 +1000 (EST)
Bruce Evans wrote:
On Sun, 20 Jun 2010, Marcel Moolenaar wrote:
...
#undef unput
-#define unput(c) \
- if (c != EOF) yyunput( c, yytext_ptr )
+#define unput(c) \
On Jun 21, 2010, at 10:22 AM, Bruce Evans wrote:
> On Sun, 20 Jun 2010, Marcel Moolenaar wrote:
>
>> Log:
>> Unbreak platforms with char unsigned by default. Oddly enough, GCC isn't
>> satisfied with a simple cast to int in the check against EOF, so the fix
>> is a bit involved by actually havin
On Tue, 22 Jun 2010 03:22:40 +1000 (EST)
Bruce Evans wrote:
> On Sun, 20 Jun 2010, Marcel Moolenaar wrote:
>
> > Log:
> > Unbreak platforms with char unsigned by default. Oddly enough, GCC
> > isn't satisfied with a simple cast to int in the check against EOF,
> > so the fix is a bit involved b
On Sun, 20 Jun 2010, Marcel Moolenaar wrote:
Log:
Unbreak platforms with char unsigned by default. Oddly enough, GCC isn't
satisfied with a simple cast to int in the check against EOF, so the fix
is a bit involved by actually having to go through a temporary variable.
Perhaps that is becaus
On Sun, 20 Jun 2010 00:34:06 + (UTC)
Marcel Moolenaar wrote:
> Author: marcel
> Date: Sun Jun 20 00:34:06 2010
> New Revision: 209358
> URL: http://svn.freebsd.org/changeset/base/209358
>
> Log:
> Unbreak platforms with char unsigned by default. Oddly enough, GCC
> isn't satisfied with a s
Author: marcel
Date: Sun Jun 20 00:34:06 2010
New Revision: 209358
URL: http://svn.freebsd.org/changeset/base/209358
Log:
Unbreak platforms with char unsigned by default. Oddly enough, GCC isn't
satisfied with a simple cast to int in the check against EOF, so the fix
is a bit involved by act