diff options
author | Jim Meyering <jim@meyering.net> | 2004-01-09 16:16:32 +0000 |
---|---|---|
committer | Jim Meyering <jim@meyering.net> | 2004-01-09 16:16:32 +0000 |
commit | 2da5fc253a9d066b8e40bddca1a897b58dcf95a3 (patch) | |
tree | 92eed1a8dcd0eb914230c3a8db069159124be96f /ChangeLog | |
parent | 442a6ce1a322dbf6cfed5f396338af6731598b80 (diff) | |
download | coreutils-2da5fc253a9d066b8e40bddca1a897b58dcf95a3.tar.xz |
*** empty log message ***
Diffstat (limited to 'ChangeLog')
-rw-r--r-- | ChangeLog | 11 |
1 files changed, 10 insertions, 1 deletions
@@ -21,9 +21,18 @@ 2004-01-03 Jim Meyering <jim@meyering.net> - * src/paste.c (paste_parallel): Remove needless complexity of + * src/paste.c: Use `bool' (not int) as the type for a few + global variables. + (collapse_escapes): Rewrite to set globals rather than modifying + its parameter. + Use size_t (not int) for all counters and related index variables. + (paste_parallel): Remove needless complexity of using xrealloc in the loop; just allocate the buffers up front. Free the two temporary buffers. + Move declarations of locals `down' into scope where used. + (paste_serial): Remove `register' attributes. + (main): Simplify delim-related code. + Free `delims', now that it's malloc'd. 2004-01-02 Jim Meyering <jim@meyering.net> |