indent(1): Support "f" and "F" floating constant suffixes.
Actually this just brings back r303487 with the correct commit log. Differential Revision: https://reviews.freebsd.org/D6966 (Partial) Obtained from: Piotr Stefaniak
This commit is contained in:
parent
b58cc20a1a
commit
9f827409fb
@ -191,15 +191,13 @@ lexi(void)
|
||||
}
|
||||
}
|
||||
while (1) {
|
||||
if (!(seensfx & 1) &&
|
||||
(*buf_ptr == 'U' || *buf_ptr == 'u')) {
|
||||
if (!(seensfx & 1) && (*buf_ptr == 'U' || *buf_ptr == 'u')) {
|
||||
CHECK_SIZE_TOKEN;
|
||||
*e_token++ = *buf_ptr++;
|
||||
seensfx |= 1;
|
||||
continue;
|
||||
}
|
||||
if (!(seensfx & 2) &&
|
||||
(*buf_ptr == 'L' || *buf_ptr == 'l')) {
|
||||
if (!(seensfx & 2) && strchr("fFlL", *buf_ptr)) {
|
||||
CHECK_SIZE_TOKEN;
|
||||
if (buf_ptr[1] == buf_ptr[0])
|
||||
*e_token++ = *buf_ptr++;
|
||||
|
Loading…
Reference in New Issue
Block a user