From: Jim Meyering Date: Fri, 12 Aug 2005 13:17:05 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: CPPI-1_12~177 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=04de70c8d2012dab319786ed6066e9ddb9999757;p=thirdparty%2Fcoreutils.git *** empty log message *** --- diff --git a/lib/ChangeLog b/lib/ChangeLog index d2d0b5281d..fd6bcac8ff 100644 --- a/lib/ChangeLog +++ b/lib/ChangeLog @@ -1,5 +1,22 @@ 2005-08-12 Jim Meyering + * regcomp.c (duplicate_node) [lint]: Set *new_idx to -1, to avoid + warnings (unfounded) in caller that it may be used uninitialized. + + * regex.c (IF_LINT): Define. + + * regex_internal.c (re_string_realloc_buffers): Rename local-shadowed + variable: s/new_array/offsets/. + (re_acquire_state) [lint]: Set *err, to avoid warnings in caller. + + * regexec.c (regexec, re_search_stub) [!_LIBC]: Omit declaration + of unused local, dfa. + (proceed_next_node): Remove outer declaration and + unnecessary initialization of local-shadowed `dest_node'. + Declare it in inner scopes, nearer its uses instead. + + * regex.h (RE_SYNTAX_POSIX_AWK): Remove useless space-before-TAB. + * fts-cycle.c (setup_dir, enter_dir, leave_dir, free_dir): Use the hash-table-based cycle-detection code not just when FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL.