summaryrefslogtreecommitdiff
path: root/lib
AgeCommit message (Collapse)Author
2005-08-13*** empty log message ***Jim Meyering
2005-08-13(get_date): Undo part of the 2005-04-04 change, so thatJim Meyering
the command "date -d'2005-03-27 +1 day'" succeeds once again, even when run in a time zone for which daylight savings time is in effect for the starting date.
2005-08-12*** empty log message ***Jim Meyering
2005-08-12(re_string_realloc_buffers): Rename local-shadowedJim Meyering
variable: s/new_array/offsets/. (re_acquire_state) [lint]: Set *err, to avoid warnings in caller.
2005-08-12(regexec, re_search_stub) [!_LIBC]: Omit declaration of unused local, dfa.Jim Meyering
(proceed_next_node): Remove outer declaration and unnecessary initialization of local-shadowed `dest_node'. Declare it in inner scopes, nearer its uses instead.
2005-08-12(duplicate_node) [lint]: Set *new_idx to -1, to avoidJim Meyering
warnings (unfounded) in caller that it may be used uninitialized.
2005-08-12*** empty log message ***Jim Meyering
2005-08-12Mention that with FTS_LOGICAL, we use FTS_TIGHT_CYCLE_CHECK.Jim Meyering
2005-08-12(setup_dir, enter_dir, leave_dir, free_dir):Jim Meyering
Use the hash-table-based cycle-detection code not just when FTS_TIGHT_CYCLE_CHECK if specified, but also with FTS_LOGICAL. Reported by James Youngman in <http://lists.gnu.org/archive/html/bug-gnulib/2005-08/msg00011.html>.
2005-08-12(fts_cross_check) [FTS_DEBUG]: s/active_dir_ht/fts_cycle.ht/.Jim Meyering
2005-08-12(IF_LINT): Define.Jim Meyering
2005-08-12(RE_SYNTAX_POSIX_AWK): Remove useless space-before-TAB.Jim Meyering
2005-08-02.Jim Meyering
2005-08-02*** empty log message ***Jim Meyering
2005-08-02new filesJim Meyering
2005-07-21Fix getdate bug with relative times.Paul Eggert
2005-07-21(relative_time): New type.Paul Eggert
(RELATIVE_TIME_0): New constant. (parser_control): Use relative_time instead of doing it ourselves. (%union): Add new relative_time rel member. (tYEAR_UNIT, tMONTH_UNIT, tHOUR_UNIT, tMINUTE_UNIT, tSEC_UNIT): Now typeless. (relunit, relunit_snumber): Now of type rel. (zone, rel, relunit, get_date): Adjust to above changes.
2005-07-12*** empty log message ***Jim Meyering
2005-07-12(X2NREALLOC): Define.Jim Meyering
2005-07-12.Jim Meyering
2005-07-12replace leading spaces with a TABJim Meyering
2005-07-11(verify_expr): Use ((verify_type__ (R) *) 0), notPaul Eggert
sizeof (verify_type__ (R)), to pacify C++ compilers.
2005-07-11Reword copyright notices to conform to current GNU coding standards.Paul Eggert
2005-07-11Parameterize the copyright symbol and the year.Paul Eggert
2005-07-11(COPYRIGHT_YEAR): New constant.Paul Eggert
(version_etc_va): Use parameterized copyright notice. Reword to conform to the current GNU coding standards.
2005-07-08(getloadavg) [__CYGWIN__]: Port to cygwin.Paul Eggert
[__linux__]: Allocate a big enough buffer for /proc/loadavg. [!LDAV_DONE]: Avoid unused variable warning.
2005-07-08(init_dfa, build_range_exp): Store __btowc valuePaul Eggert
in wint_t, not wchar_t. Remove now-unnecessary cast.
2005-07-08Regenerate.Paul Eggert
2005-07-08Switch to Isamu Hasegawa's implementation of regex, which isPaul Eggert
now in gnulib.
2005-07-08Add regcomp.c, regex_internal.c, regex_internal.h.Paul Eggert
2005-07-08(libcoreutils_a_SOURCES): Remove regex.h; gnulibPaul Eggert
now does this automatically for us.
2005-07-07.Jim Meyering
2005-07-05fix typo in commentJim Meyering
2005-07-05verify.h improvements.Paul Eggert
2005-07-05* verify.h (GL_CONCAT0, GL_CONCAT): Define unconditionally; don'tPaul Eggert
depend on whether verify_decl is defined. (verify): Renamed from verify_decl. All uses changed. Use an extern function decl, as it can't possibly collide with other decls. (verify_expr): Renamed from verify. All uses changed. (verify_type__): New private macro. (verify, verify_expr): Use it.
2005-07-04rename: s/verify_dcl/verify_decl/Jim Meyering
2005-07-04*** empty log message ***Jim Meyering
2005-07-04(libcoreutils_a_SOURCES): Add verify.h here, temporarily.Jim Meyering
Eventually, it'll be pulled in via AC_LIBSOURCES.
2005-07-04*** empty log message ***Jim Meyering
2005-07-04(verify, verify_dcl): New file/macros.Jim Meyering
2005-07-04*** empty log message ***Jim Meyering
2005-07-04(verify_dcl): Rename from VERIFY. Update use.Jim Meyering
2005-07-04Remove the dependency of the strftime module on the tzset module.Paul Eggert
2005-07-04(my_strftime) [! defined _LIBC && ! HAVE_RUN_TZSET_TEST]:Paul Eggert
Copy the input structure, to work around some of the bug with Solaris 2.5.1 and Solaris 2.6.
2005-07-03*** empty log message ***Jim Meyering
2005-07-03(posixtime) [lint]: Initialize *all* of tm0, not justJim Meyering
the .tm_year member, since otherwise gcc-4.0 would now warn about tm_zone, tm_gmtoff, tm_isdst, tm_yday, tm_wday.
2005-07-03.Jim Meyering
2005-07-03.Jim Meyering
2005-07-03Minor fixes for port to Solaris 8.Paul Eggert
2005-07-03Undo previous change.Paul Eggert