Age | Commit message (Collapse) | Author | |
---|---|---|---|
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 | Plug another unusual leak. | Jim Meyering | |
(AD_mark_helper): Free malloc'd filename if hash_insert says that string is already in the hash table. | |||
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-03 | The dev/inode of the topmost directory in each hierarchy were not | Jim Meyering | |
being recorded. * src/remove.c (remove_cwd_entries): Don't call cycle_check here. (AD_push): Call it from here instead. | |||
2006-07-03 | Fix two small leaks. | Jim Meyering | |
* src/remove.c (AD_stack_clear): New function. (rm_1): Use it. (AD_pop_and_chdir): Free *prev_dir just before longjmp. | |||
2006-07-03 | * tests/Makefile.am, tests/*/Makefile.am: (TESTS_ENVIRONMENT): | Jim Meyering | |
Add $VG_PATH_PREFIX as a prefix to $PATH | |||
2006-07-03 | . | Jim Meyering | |
2006-07-03 | * tests/envvar-check (vars): Add CDPATH and POSIXLY_CORRECT. | Jim Meyering | |
* tests/Makefile.am (evar-check): Remove rule. (EXTRA_DIST): Remove .env-warn. * tests/.env-warn: Remove file. No longer used. Suggestion from Eric Blake. | |||
2006-07-03 | *** empty log message *** | Jim Meyering | |
2006-07-03 | (gl_FUNC_FTRUNCATE): Adjust diagnostic to recommend | Jim Meyering | |
./configure SKIP_FTRUNCATE_CHECK=yes, rather than env ... ./configure. Suggestion from Ralf Wildenhues. | |||
2006-07-02 | (intmax_t, uintmax_t): Prefer long to long long if | Paul Eggert | |
both are 64 bits. | |||
2006-07-02 | (gl_STDINT_H): Use more-mnemonic identifiers for | Paul Eggert | |
test cases, so that config.log is a bit easier to follow. | |||
2006-07-02 | *** empty log message *** | Jim Meyering | |
2006-07-02 | New file, from gnulib. Required by stdint.m4. | Jim Meyering | |
2006-07-02 | Include <stdint.h> unconditionally, since we | Paul Eggert | |
now assume the stdint module. | |||
2006-07-02 | Sync stdint module from gnulib. | Paul Eggert | |
2006-07-01 | With no operand, 'tail -f' now silently ignores the '-f' | Paul Eggert | |
only if standard input is a FIFO or pipe and POSIXLY_CORRECT is set. | |||
2006-07-01 | (f-pipe-1): Renamed from f-1. | Paul Eggert | |
(test_vector): Set POSIXLY_CORRECT for the f-pipe-* tests. | |||
2006-07-01 | (main): With no operand, 'tail -f' now silently ignores the '-f' | Paul Eggert | |
only if standard input is a FIFO or pipe and POSIXLY_CORRECT is set. | |||
2006-07-01 | (tail invocation): With no operand, 'tail -f' now | Paul Eggert | |
silently ignores the '-f' only if standard input is a FIFO or pipe and POSIXLY_CORRECT is set. | |||
2006-07-01 | * src/ln.c (do_link): Use new, shorter URL, for ag-review link. | Jim Meyering | |
2006-07-01 | Add ^lib/xstrtold\.c$, so make distcheck passes once again. | Jim Meyering | |
2006-07-01 | *** empty log message *** | Jim Meyering | |
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 | (seq invocation): seq now uses long double | Paul Eggert | |
internally rather than double. It now defaults to a minimal fixed point format if possible. It lets you use %a, %A, %E, %F, %G. Don't assume printf doesn't work for numbers that fit in 64 but not 32 bits; typically they work these days. Improve discussion of large integers and update the rounding-error numbers. | |||
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 | (gl_C_STRTOLD): Add c-strtod.c to LIBSOURCES. | Paul Eggert | |
Require gl_USE_SYSTEM_EXTENSIONS, not gl_C_STRTOD, since we don't want to require the building of c-strtod.o. | |||
2006-07-01 | (cu_LIB_CHECK): Remuve SEQ_LIBM, since seq no longer | Paul Eggert | |
needs -lm directly. | |||
2006-07-01 | (gl_PREREQ): Require gl_C_STRTOD and gl_XSTRTOLD. | Paul Eggert | |
2006-07-01 | (gl_XSTRTOLD): New macro. | Paul Eggert | |
2006-07-01 | (seq_LDADD): Remove $(SEQ_LIBM); add $(POW_LIB). | Paul Eggert | |
2006-07-01 | Don't include <math.h> or <xstrtol.h>; no longer needed. | Paul Eggert | |
(isfinite) [!defined isfinite]: New macro. (separator, terminator): Now points to const. (first, step, last): Remove. (usage): Update to match new behavior. (struct operand, operand): New type. (scan_arg): Renamed from scan_double_arg, since we no longer use double. All uses changed. Compute and return a value of type operand, not double. (long_double_format): Renamed from valid_format, and now returns a new format with an "L" added if needed, if the original format was valid. Allow %a, %A, %E, %F, and %G formats. (print_numbers): Take numeric values as args rather than from globals. Print long double, not double. (get_width_format): Remove. (get_default_format): New function. (main): Implement new way of calculating default format. Don't worry about locale's representation of the decimal point, since the arguments are always processed in the C locale. | |||
2006-07-01 | (neg-2): Adjust to new default format. | Paul Eggert | |
(eq-wid-1, eq-wid-2): Resurrect these tests, since the new implementation should do the right thing. | |||
2006-07-01 | Initial revision. | Paul Eggert | |
2006-06-30 | * tests/stty/basic-1: Work around an intermittent test failure | Jim Meyering | |
on HP-UX 11.11. Report and analysis from Bob Proulx. http://article.gmane.org/gmane.comp.gnu.core-utils.bugs/7475 | |||
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 | * src/sort.c (main): Support obsolete usages like "sort +1 -2" even when | Paul Eggert | |
conforming to POSIX 1003.1-2001, since this is a pure extension to POSIX. | |||
2006-06-28 | * coreutils.texi (sort invocation): 'sort +1 -2' is now supported | Paul Eggert | |
even when conforming to POSIX 1003.1-2001. | |||
2006-06-28 | (sort invocation): 'sort +1 -2' is now supported | Paul Eggert | |
even when conforming to POSIX 1003.1-2001, since this is a pure extension to POSIX. | |||
2006-06-28 | Support obsolete usages like "sort +1 -2" even when conforming to | Paul Eggert | |
POSIX 1003.1-2001. | |||
2006-06-28 | (CLOSEDIR): Remove. All uses changed to closedir. | Paul Eggert | |
2006-06-28 | * savedir.m4: Remove AC_FUNC_CLOSEDIR_VOID requirement. | Paul Eggert | |
2006-06-28 | * src/system.h (CLOSEDIR): Remove. All uses changed to closedir. | Paul Eggert | |
2006-06-28 | Fix attribution again. | Paul Eggert | |
2006-06-28 | Fix attribution for last patch. | Paul Eggert | |
2006-06-28 | Don't require AC_C_CONST, since it's obsolete. | Paul Eggert | |
Require Autoconf 2.60. | |||
2006-06-28 | (gl_FUNC_GNU_STRFTIME): Don't require AC_C_CONST, since it's obsolete. | Paul Eggert | |
2006-06-28 | (_AC_LIBOBJ_FNMATCH): Don't require AC_C_CONST, since it's obsolete. | Paul Eggert | |
2006-06-28 | (gl_CHECK_ALL_TYPES): Don't require AC_C_CONST, since it's obsolete. | Paul Eggert | |