Start fixing pp-number tokenization.
commit930f205a62cd53ecf19d68297895bb4025db28e8
authorLinus Torvalds <torvalds@ppc970.osdl.org>
Sat, 5 Jun 2004 19:29:34 +0000 (5 12:29 -0700)
committerLinus Torvalds <torvalds@ppc970.osdl.org>
Fri, 8 Apr 2005 04:02:00 +0000 (7 21:02 -0700)
treeb18c8eb2fe48c102b5bc24bcb46f3130fcdc9767
parent8d180a68d6c68182e532964e67e49503ca668257
Start fixing pp-number tokenization.

Al points out that C99 says that a pp-number token is

        pp-number:
                digit
                . digit
                pp-number digit
                pp-number identifier-nodigit
                pp-number e sign
                pp-number E sign
                pp-number p sign
                pp-number P sign
                pp-number .

This handles the (ambiguous) case of it starting with a '.'.

We'll do the rest next.
tokenize.c