Date:2012-04-17 14:20:41 (11 years 11 months ago)
Author:Werner Almesberger
Commit:a1d5e2dcefab2130df3161cea6b29e1859388110
Message:genex/comp.c (read_tree): correct scanning of names

Before this fix, the whitespace following single-character names
was included in the name.
Files: genex/comp.c (1 diff)

Change Details

genex/comp.c
5151            }
5252            break;
5353        }
54        for (p = e = s--; *p && *p != '#' && *p != '\n'; p++)
54        for (p = e = --s; *p && *p != '#' && *p != '\n'; p++)
5555            if (*p != ' ' && *p != '\t')
5656                e = p;
5757        if (!last && n) {

Archive Download the corresponding diff file

Branches:
master



interactive