Age | Commit message (Collapse) | Author | |
---|---|---|---|
2006-07-11 | Sync from gnulib. | Paul Eggert | |
2006-07-09 | Update from gnulib. | Paul Eggert | |
2006-07-09 | (stdint.h): FULL_PATH_STDINT_H -> ABSOLUTE_STDINT_H, | Paul Eggert | |
to accommodate update from gnulib. | |||
2006-07-08 | (getndelim2): Remove doubled "after" in comment. | Jim Meyering | |
2006-07-04 | Really add wcwidth.h. | Jim Meyering | |
2006-07-04 | *** empty log message *** | Jim Meyering | |
2006-07-04 | *** empty log message *** | Jim Meyering | |
2006-07-04 | Sync from gnulib. | Paul Eggert | |
2006-07-04 | (libcoreutils_a_SOURCES): Add setenv.h, wcwidth.h, | Paul Eggert | |
to accommodate sync from gnulib. | |||
2006-07-04 | Include <sys/types.h> after @FULL_PATH_STDINT_H@, for | Paul Eggert | |
MacOS X 10.4.6. Don't mention <sys/int_types.h>. | |||
2006-07-03 | * cycle-check.h (CYCLE_CHECK_REFLECT_CHDIR_UP): Abort if this | Jim Meyering | |
macro is used before the first cycle_check call. | |||
2006-07-02 | (intmax_t, uintmax_t): Prefer long to long long if | Paul Eggert | |
both are 64 bits. | |||
2006-07-02 | Sync stdint module from gnulib. | Paul Eggert | |
2006-07-01 | seq defaults to a minimal fixed point format that does not lose | Paul Eggert | |
information if seq's operands are all fixed point decimal numbers. You no longer need the `-f%.f' in `seq -f%.f 1048575 1024 1050623', for example, since the default format now has the same effect. seq now lets you use %a, %A, %E, %F, and %G formats. seq now uses long double internally rather than double. | |||
2006-07-01 | (XSTRTOD, DOUBLE): New macros, so that we can support | Paul Eggert | |
both double and long double versions. (XSTRTOD): Renamed from xstrtod. Use DOUBLE internally. | |||
2006-07-01 | (xstrtold): New decl. | Paul Eggert | |
2006-07-01 | Initial revision. | Paul Eggert | |
2006-06-29 | From Derek R. Price: | Jim Meyering | |
* lib/strftime.c: Assume strftime exists. * m4/strftime.m4: Don't call AC_FUNC_STRFTIME. | |||
2006-06-28 | (CLOSEDIR): Remove. All uses changed to closedir. | Paul Eggert | |
2006-06-20 | (openat): Use ?:, not if, to work around GCC bug 4210. | Paul Eggert | |
2006-06-20 | fix typo in comment: s/nerrower/narrower/ | Jim Meyering | |
2006-06-19 | *** empty log message *** | Jim Meyering | |
2006-06-19 | Apply this change from gnulib: | Jim Meyering | |
2006-06-16 Eric Blake <ebb9@byu.net> * unsetenv.c [!defined errno]: Assume errno.h declares errno. | |||
2006-06-11 | (__attribute__): Don't define if already defined. | Paul Eggert | |
2006-06-10 | Apply this change from gnulib: | Jim Meyering | |
2006-05-30 Ralf Wildenhues <Ralf.Wildenhues@gmx.de> Bruno Haible <bruno@clisp.org> * strndup.c (strndup) [!_LIBC]: Don't undefine macro definition. | |||
2006-06-05 | * regexec.c (group_nodes_into_DFAstates): Fix a buffer overrun | Paul Eggert | |
reported by Andreas Schwab. | |||
2006-05-25 | (small_open, large_open): New macros. | Paul Eggert | |
(__open, __open64) [!_LIBC]: Remove. (__gen_tempname): Use small_open and large_open instead of __open and __open64. This fixes a portability bug on HP-UX 11.11i reported by Simon Wing-Tang in <http://lists.gnu.org/archive/html/bug-coreutils/2006-05/msg00114.html>. | |||
2006-05-23 | Fix misspelling. | Paul Eggert | |
2006-05-23 | Note problem with string.h. | Paul Eggert | |
2006-05-23 | filemode.c: Don't include <string.h>. | Paul Eggert | |
2006-05-23 | Don't include <string.h>; this include was | Paul Eggert | |
inadvertantly put into the previous patch. | |||
2006-05-22 | * filemode.c (setst): Remove. | Paul Eggert | |
(strmode): Rewrite to avoid setst. This makes the code shorter, (arguably) clearer, and the generated code is a bit smaller on my Debian GNU/Linux stable x86 host. | |||
2006-05-22 | Document the internals better. Most of this change | Paul Eggert | |
was written by Bruno Haible. | |||
2006-05-20 | *** empty log message *** | Jim Meyering | |
2006-05-20 | (fts_open): Fail with EINVAL if a caller violates this rule: | Jim Meyering | |
Either FTS_LOGICAL or FTS_PHYSICAL must be provided to the fts_open() function. | |||
2006-05-19 | Sync nanosleep from gnulib. | Paul Eggert | |
2006-05-15 | *** empty log message *** | Jim Meyering | |
2006-05-15 | (xfts_open): Always use FTS_CWDFD. | Jim Meyering | |
2006-05-15 | *** empty log message *** | Jim Meyering | |
2006-05-15 | Avoid the expense of an fstat, when possible. | Jim Meyering | |
(O_NOFOLLOW, STREQ): Define. (diropen_fd): Remove function. Merge it into sole caller... (diropen): ...here. Use O_NOFOLLOW when appropriate. (fts_safe_changedir): Call fstat for dev/inode check, only if the previous open/openat call may have opened the wrong directory. | |||
2006-05-15 | *** empty log message *** | Jim Meyering | |
2006-05-15 | Restore the parts of fts that were removed on 2006-01-17, so that | Jim Meyering | |
it's easier for legacy applications designed for the version of fts in glibc or BSD to convert to this more robust version. Add a new mode, FTS_CWDFD, by which to enable the improved (openat- based -- aka no-chdir) semantics. * fts_.h (FTS_CWDFD): Define. Callers must use this fts_open option to enable the more robust behavior. (FTS_OPTIONMASK): Widen accordingly. * fts.c: Restore removed code, reverting the default behavior. | |||
2006-05-11 | *** empty log message *** | Jim Meyering | |
2006-05-11 | (sha1_buffer): Correct comment: s/MD5/SHA1/. From James Lemley. | Jim Meyering | |
2006-05-06 | . | Jim Meyering | |
2006-05-04 | *** empty log message *** | Jim Meyering | |
2006-05-03 | Include "same-inode.h". | Jim Meyering | |
2006-04-25 | (get_date): When adding relative date, start with the | Paul Eggert | |
initial time, not with the result of the first mktime call. | |||
2006-04-17 | Document filemode changes. | Paul Eggert | |
2006-04-17 | Don't undef S_ISDOOR, since it's never buggy. | Paul Eggert | |
(S_ISDOOR): Don't bother with S_IFDOOR, since that code is never needed. (S_ISPORT, S_ISWHT): New macros, if not already defined. |