MFC r206687: indent(1): don't treat bare '_t' as a type name with -ta

This commit is contained in:
Andriy Gapon 2010-04-22 13:16:18 +00:00
parent a53cbf9286
commit 45ebe396a8
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/stable/8/; revision=207063

View File

@ -251,9 +251,10 @@ lexi(void)
if (auto_typedefs) {
const char *q = s_token;
size_t q_len = strlen(q);
/* Check if we have an "_t" in the end */
if (q[0] && q[1] &&
(strcmp(q + strlen(q) - 2, "_t") == 0)) {
if (q_len > 2 &&
(strcmp(q + q_len - 2, "_t") == 0)) {
ps.its_a_keyword = true;
ps.last_u_d = true;
goto found_auto_typedef;