~ctwm/ctwm/trunk

« back to all changes in this revision

Viewing changes to parse_yacc.c

  • Committer: Matthew Fuller
  • Date: 2016-08-11 10:08:17 UTC
  • mto: This revision was merged to the branch mainline in revision 512.
  • Revision ID: fullermd@over-yonder.net-20160811100817-06pf2ccgic5ykv0a
Brace these 1- (or 0-, depending on how you count) loops while I'm
touching them.

Show diffs side-by-side

added added

removed removed

Lines of Context:
230
230
                return true;
231
231
        }
232
232
 
233
 
        for(; *s && Isascii(*s) && Isdigit(*s); s++)
 
233
        for(; *s && Isascii(*s) && Isdigit(*s); s++) {
234
234
                /* nada */;
 
235
        }
235
236
        return (*s ? false : true);
236
237
}
237
238