diff options
author | Jim Meyering <jim@meyering.net> | 2005-10-24 07:28:39 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2005-10-24 07:28:39 +0000 |
commit | 57d5938b174238e4c70619ee64652c93679810ed (patch) | |
tree | a560ea9a41197c422db8688c38e8c8924a8d3633 /src/expand.c | |
parent | 48e6b742788d317fb78bb0730a2d18c779c72a5b (diff) | |
download | coreutils-57d5938b174238e4c70619ee64652c93679810ed.tar.gz coreutils-57d5938b174238e4c70619ee64652c93679810ed.tar.bz2 coreutils-57d5938b174238e4c70619ee64652c93679810ed.zip |
* src/expand.c (parse_tab_stops): Add comment to make this function
identical to the one in unexpand.c.
* src/unexpand.c (parse_tab_stops): Adjust syntax to make this function
identical to the one in expand.c.
Diffstat (limited to 'src/expand.c')
-rw-r--r-- | src/expand.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/expand.c b/src/expand.c index bf857b0e4..b1b100422 100644 --- a/src/expand.c +++ b/src/expand.c @@ -172,6 +172,7 @@ parse_tab_stops (char const *stops) num_start = stops; } + /* Detect overflow. */ if (!DECIMAL_DIGIT_ACCUMULATE (tabval, *stops - '0', uintmax_t)) { size_t len = strspn (num_start, "0123456789"); |