Commit Graph

  • fe3fbf2f54 * tests/chgrp/basic: Also avoid test failures on Darwin 8.8.x (MacOS X 10.4). Jim Meyering 2007-03-09 20:09:46 +01:00
  • d9079b12e3 src/fs.h: git-rm a generated but already-ignored file Jim Meyering 2007-03-09 15:18:17 +01:00
  • 222b7c46bd Avoid test failures on Darwin 7.9.0 (MacOS X 10.3.9) * tests/chgrp/basic: Don't let failure by chgrp to set the group of a symlink make this test fail. Do give a diagnostic. In the chgrp-no-change-ctime test, add darwin7.9.0 as another known-failing system. When failing on some other system, print $host_triplet, too. Reported by Peter Fales. Jim Meyering 2007-03-09 08:47:33 +01:00
  • 4bf9fe82c0 * src/c99-to-c89.diff: Reflect the new c99'ism, update offsets. Jim Meyering 2007-03-08 22:09:11 +01:00
  • fe068c60fb Add to .cvsignore and .gitignore files. Jim Meyering 2007-03-08 22:01:27 +01:00
  • e3864a430e TODO: printf: support %a even when the native *printf(3) is deficient Jim Meyering 2007-03-08 22:01:05 +01:00
  • 2639ed8208 rm without -f: give a better diagnostic when euidaccess fails. * src/remove.c (write_protected_non_symlink): Return int, not bool, so that we can indicate failure too (as a postive error number). (prompt): If write_protected_non_symlink fails, report that error number and fail rather than charging ahead and removing the dubious entry. Redo the logic of printing a diagnostic so that we need to invoke quote (full_filename (...)) only once. More details at: <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/9952/focus=9996> Jim Meyering 2007-03-08 10:00:55 +01:00
  • 09aab8cb41 Generalize a few more cvs-isms. * bootstrap (checkout_only_file): Rename from CVS_only_file. Change comments and diagnostics not to say "CVS". Jim Meyering 2007-03-08 09:14:18 +01:00
  • 9abd8baaaa * bootstrap: Run libtool, if necessary. Jim Meyering 2007-03-08 01:06:41 +01:00
  • 551bed87fa Make bootstrap a little more general. * bootstrap (build_aux): Factor out/use this definition. Formally require a "AC_CONFIG_AUX_DIR($build_aux)" line in configure.ac. (insert_sorted_if_absent): Move function definition "up", to precede new first use. If $build_aux/ doesn't exist initially, create it, and mark it as ignored. Jim Meyering 2007-03-08 00:23:00 +01:00
  • b7a568ece8 * vasnprintf.c (VASNPRINTF): Add missing semicolon. Jim Meyering 2007-03-04 13:03:59 +01:00
  • 2871ad3b45 Fix a bug: cp -x would fail to set mount point permissions. * NEWS: mention cp -x bug fix * src/copy.c (copy_internal): Don't return immediately after copying a mount point that we do not intend to recurse under. Based on a patch by Andrew Church. Andrew Church 2007-03-03 23:00:18 +01:00
  • f0537a71f1 pwd-unreadable-parent: Skip test on ia64/Linux, too. * tests/misc/pwd-unreadable-parent: Also skip when $REPLACE_GETCWD. Reported by Bob Proulx. Jim Meyering 2007-03-03 21:38:16 +01:00
  • 1187f011d3 Add to .cvsignore and .gitignore files. Jim Meyering 2007-03-02 14:54:52 +01:00
  • c872a5f7bb * vasnprintf.c (VASNPRINTF): Remove cast of alloca return value. Jim Meyering 2007-03-02 14:33:12 +01:00
  • fe4f1227a5 pwd-unreadable-parent: Skip test on non-Linux/GNU systems. * tests/misc/pwd-unreadable-parent: Rather than trying to decide whether this test has a chance of succeeding, run it only when $(host_os) is linux-gnu. It was failing on powerpc-apple-darwin8.8.0 * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Add host_os=$(host_os). Jim Meyering 2007-03-02 14:25:48 +01:00
  • 13a4b23e79 * tests/misc/pwd-long: Also allow "+" in $PWD. Jim Meyering 2007-03-02 13:18:43 +01:00
  • b655a2154e * Makefile.maint (my-distcheck): Skip the c99/c89 check if there's no such .diff file. Jim Meyering 2007-03-02 11:13:54 +01:00
  • 272d99e7a3 Remove another coreutils-ism. Formatting cleanup. * Makefile.maint (my-distcheck): Update an outdated comment. (emit_upload_commands): Use $(PACKAGE) rather than "coreutils". Jim Meyering 2007-03-02 10:57:08 +01:00
  • 262963212b * Makefile.maint (warn_cflags): Hoist, adding "-Dlint -O". (my-distcheck): Use the new variable, instead of too-long literal. Jim Meyering 2007-03-01 11:06:58 +01:00
  • ea42025c70 Make "make syntax-check" rules less coreutils-specific. * Makefile.maint (sc_cast_of_x_alloc_return_value): Use CVS_LIST_EXCEPT. (sc_cast_of_alloca_return_value): Likewise. (sc_root_tests): Do nothing if there is no check-root target in tests/Makefile.am. Jim Meyering 2007-03-01 11:05:35 +01:00
  • 7daf29845b Run the writable-files check only for release-building targets. * Makefile.maint (local-checks-available): Remove writable-files. (alpha beta major): Put it here, instead. Jim Meyering 2007-03-01 11:02:25 +01:00
  • 5703f662b7 "make syntax-check" now runs only Makefile.cfg-selected tests * Makefile.maint (syntax-check-rules): Hoist this definition so that it precedes the indirect use in the definition of $(local-check). (local-check): Use :=, not just "=". (syntax-check): Depend on $(local-check), not $(syntax-check-rules). Jim Meyering 2007-03-01 11:00:12 +01:00
  • b3b6f52fad Merge in changes from gnulib: * vasnprintf.c: Add a comment explaining why coreutils has its own version of this file. Include <stdint.h>. (SIZE_MAX): Remove definition (now, stdint.h covers that). (EOVERFLOW): Remove definition (now done via the eoverflow module). Update some #ifdef to #if. Use HAVE_LONG_LONG_INT, not HAVE_LONG_LONG. * printf-parse.c: Likewise. Jim Meyering 2007-03-01 10:41:48 +01:00
  • f6f2846bd8 * bootstrap.conf (gnulib_modules): Replace xreadlink with xreadlink-with-size. Add xreadlink. * src/copy.c (copy_internal): Update. * src/ls.c (is_directory): Update. * src/stat.c (print_stat): Update. * src/readlink.c (main): Use the one-argument xreadlink function. Bruno Haible 2007-03-01 08:06:24 +01:00
  • e5dbc71841 * doc/coreutils.texi (Common options): --si outputs "M", not "MB". Problem reported by Philip Rowlands in <http://lists.gnu.org/archive/html/bug-coreutils/2007-02/msg00283.html>. Paul Eggert 2007-02-28 22:25:53 +01:00
  • b2a48ec240 * tsearch.c: Remove unused file. Jim Meyering 2007-02-28 21:50:14 +01:00
  • c62a7156c5 * .x-sc_file_system: Add the new test, tests/misc/df-P, to this list of exceptions, for the "make distcheck" sc_file_system rule. Jim Meyering 2007-02-28 13:52:20 +01:00
  • 195108489b * Makefile.maint (gnulib_snapshot_date): Remove now-unused definition. Jim Meyering 2007-02-28 10:27:31 +01:00
  • 55bc95b4d3 * tests/misc/df-P: This script *is* executable. Jim Meyering 2007-02-28 08:11:41 +01:00
  • d480544281 Add a test for today's df -P fix. * tests/misc/df-P: New file. * tests/misc/Makefile.am (TESTS): Add df-P. Jim Meyering 2007-02-27 19:34:51 +01:00
  • 817d0261eb Make df -P immune to effects of e.g., the BLOCK_SIZE envvar. * NEWS: With -P, the default block size and output format is not affected by DF_BLOCK_SIZE, BLOCK_SIZE, or BLOCKSIZE. * src/df.c (main): Implement this. * doc/coreutils.texi (df invocation): With -P, the default block size and output format is not affected by DF_BLOCK_SIZE, BLOCK_SIZE, or BLOCKSIZE. Paul Eggert 2007-02-27 19:12:08 +01:00
  • 898d3df2f8 * Makefile.maint (announcement): Adjust so that it works with announce-gen's --gnulib-snapshot-time-stamp option. Indent one of the command lines using TAB, not 8 spaces. Jim Meyering 2007-02-25 01:11:32 +01:00
  • 9317cccb8f Post-release version change. * NEWS: Add a line for 6.8+. * configure.ac (AC_INIT): Set new version string. Jim Meyering 2007-02-25 01:10:07 +01:00
  • cc2d4f6c46 Version 6.8. * NEWS: Record release date and new version number. * configure.ac (AC_INIT): New version number. v6.8 COREUTILS-6_8 Jim Meyering 2007-02-24 21:16:52 +01:00
  • 471eca0dd6 Don't skip this test on new-enough Linux/GNU systems. * tests/misc/pwd-unreadable-parent: Test $REPLACE_GETCWD = 0, rather than for __GETCWD_PREFIX in config.h (the latter is no longer defined, ever, due to gnulib changes). * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Define REPLACE_GETCWD. Jim Meyering 2007-02-24 20:57:14 +01:00
  • e98137ddd4 Remove the "gnits" option; it prohibits my using "+" as a version string suffix, and all it does (beyond the default "gnu" option) is to _require_ the THANKS file. * configure.ac (AM_INIT_AUTOMAKE): Remove it. Jim Meyering 2007-02-24 13:57:51 +01:00
  • 1b2056c435 * README: Document the OSF/1 4.0d build failure and work-around. Reported by Bruno Haible. Jim Meyering 2007-02-24 13:49:20 +01:00
  • f92a08e171 * NEWS: Use a simple "+" suffix to denote pre-release, not "-dirty". Nicer connotations. * configure.ac: Use 6.7+, not 6.7-dirty. Jim Meyering 2007-02-24 13:11:25 +01:00
  • 3ea177e3fa * NEWS: sort no longer compresses temporaries by default. * bootstrap.conf: Remove findprog. * doc/coreutils.texi (sort invocation): The default is to not compress. Don't treat "" specially. * src/sort.c: Don't include findprog.h. (create_temp): Compress only if the user specified --compress-program. * tests/misc/sort-compress: Adjusts tests to match new behavior. Paul Eggert 2007-02-24 12:24:27 +01:00
  • 75460e090c Avoid a shell syntax error, when building with an inadequate Perl. * man/Makefile.am (.x.1): Add quotes around $(PERL) in case, since it can expand to "/.../missing perl". Jim Meyering 2007-02-24 09:26:56 +01:00
  • 90390c6a92 * man/Makefile.am (.x.1): Warn when unable to update a man page. Suggestion from Bruno Haible. Jim Meyering 2007-02-24 09:14:56 +01:00
  • 63813d0950 Handle better the combination of old Perl and a pre-c99 compiler. * man/Makefile.am (.x.1): If the autoconf test has determined that perl is missing or not a sufficient version, do nothing. Bruno Haible 2007-02-24 08:51:19 +01:00
  • 2e140cfb42 * tests/readlink/can-e: Put the closing double-quote at the end of a backquoted word, not in the middle. Works around a bug in sh on OSF/1 4.0d. * tests/readlink/can-f: Likewise. * tests/readlink/can-m: Likewise. Bruno Haible 2007-02-24 08:22:08 +01:00
  • 33176a7269 * tests/du/slink: Skip the test if executing on an nfsv3 file system. This avoids a test failure at least on OSF/1 4.0d. Bruno Haible 2007-02-24 08:20:37 +01:00
  • 813de08e50 * randperm.c (randperm_new): Comment: say that this function returns a pointer to malloc'd storage. Jim Meyering 2007-02-23 22:16:12 +01:00
  • 5a8a00e16e * src/date.c (usage): Split a diagnostic that had grown to be longer than the C89 maximum of 509 bytes. Jim Meyering 2007-02-23 17:50:40 +01:00
  • 54bdcc09ae * src/date.c (usage): Mention that --rfc-3339 uses space, not 'T', for a separator. Include sample RFC 2822 and 3339 output. Ed Santiago 2007-02-23 16:11:01 +01:00
  • cb121d8f36 With -Dlint, make shuf free all heap-allocated storage. * src/shuf.c (main): Move declaration of input_lines to function scope, and initialize to NULL, so we can free it. [lint]: Free all malloc'd memory. * tests/misc/shuf: Also test shuf's -e and -i options. Jim Meyering 2007-02-23 15:18:16 +01:00
  • 3a9070dce7 Correct typo in ChangeLog entry. Jim Meyering 2007-02-22 23:51:43 +01:00
  • 93f9b9be84 Merge in a change from some other incarnation of this file (gzip?) * bootstrap (gnulib_tool): Skip get_translations if there is no po/ dir. Jim Meyering 2007-02-22 23:37:19 +01:00
  • 4e73fea3e3 Honor dd's noatime flag if possible, even if not supported on build fs * doc/coreutils.texi (dd invocation): Warn that noatime might not be reliable. * src/dd.c (flags, usage): Look at O_NOATIME, not HAVE_WORKING_O_NOATIME, to decide whether to support the noatime flag, so that dd attempts O_NOATIME even if the build file system does not support it. Problem reported by Jim Meyering today in bug-coreutils. * tests/dd/misc: Generate a warning, not a failure, if noatime exists but fails. Paul Eggert 2007-02-22 19:09:35 +01:00
  • c450b625b4 Adjust preceding change not to perform an unaligned access. * src/copy.c (copy_reg): Undo previous change. Instead, make it clearer that we're using a single-byte sentinel, and [lint]: Initialize uintptr_t-1 bytes after the sentinel. Reported by Andreas Schwab. Jim Meyering 2007-02-22 16:32:45 +01:00
  • f48ca7f500 Placate valgrind, wrt ./cp --sparse=always * src/copy.c (copy_reg): Place the sentinel by setting a full word's worth of bits, not just a single byte's worth. This avoids a harmless (but distracting) case of memory being used-uninitialized. Jim Meyering 2007-02-22 12:50:36 +01:00
  • c25841e0d4 Add to .cvsignore and .gitignore files. Jim Meyering 2007-02-21 22:45:09 +01:00
  • 45a35825dc * tests/misc/date: Remove vestigial use of Data::Dumper. Jim Meyering 2007-02-21 17:26:32 +01:00
  • cc388d140c * src/copy.c (cached_umask): Cast -1 to mode_t to avoid a warning about out-of-range initializer with Sun C 5.8. Paul Eggert 2007-02-21 17:23:05 +01:00
  • c46549dc38 * bootstrap (CVS_only_file): Use README-hacking. Jim Meyering 2007-02-20 22:44:15 +01:00
  • 2d2255272d * README-hacking: Update to reflect that we now use git. Jim Meyering 2007-02-20 22:42:56 +01:00
  • 4cf919bcdf Now that we use GIT, not cvs, rename README-cvs. * README-hacking: Renamed from... * README-cvs: ...this. Jim Meyering 2007-02-20 22:37:18 +01:00
  • d7226387a9 * src/env.c (main): When invoked with no arguments (i.e. when printing the environment), use a local variable to iterate through the global "environ" array, rather than "environ" itself. This is solely to avoid changing the environment for an LD_PRELOAD-substituted "puts" or "exit" function. Tiny patch by Harvey Eneman. See <http://thread.gmane.org/gmane.comp.gnu.coreutils.bugs/9735>. * THANKS: Update. Jim Meyering 2007-02-20 17:23:51 +01:00
  • dd99d05b4a * bootstrap: Move definitions of temporary directory names and the new bt_regex "up" to precede all uses, so it's clearer what their scope is. Also, use [.], rather than \\., since the former works even if eval'd. Jim Meyering 2007-02-20 17:20:22 +01:00
  • fd32ffb4da * bootstrap: Remove occurrences of $bt (._bootmp) from lib/Makefile. Based on the bison 2007-02-19 change by Joel E. Denny. Jim Meyering 2007-02-20 17:08:10 +01:00
  • c363fcb9f0 * NEWS: sort now uses a --compress-program option rather than an environment variable. * doc/coreutils.texi (sort invocation): Document this. * src/sort.c (usage): Likewise. (COMPRESS_PROGRAM_OPTION): New const. (long_options, create_temp, main): Support new option. * tests/misc/sort-compress: Test it. Paul Eggert 2007-02-19 22:11:18 +01:00
  • e189deb855 * bootstrap: Fix typo s/dowloading/downloading/ in --help output. Jim Meyering 2007-02-19 18:44:21 +01:00
  • aeb892e592 Add to .cvsignore and .gitignore files. Jim Meyering 2007-02-18 22:40:52 +01:00
  • 6819756293 Rely on gnulib-generated stdlib.h, not exit.h. * src/system.h: Don't include exit.h, now that it's subsumed by the gnulib-generated stdlib.h. * lib/xfts.c: Include <stdlib.h> rather than exit.h, now that stdlib.h Jim Meyering 2007-02-18 22:34:37 +01:00
  • c95bb0c6f0 * tests/rm/fail-eacces: Skip this test when running as root. Reported by Matthew Woehlke. Jim Meyering 2007-02-18 17:40:06 +01:00
  • d07d81df27 * bootstrap: Use "._bootmp" as the temporary directory name, not ".#bootmp". The latter's "#" caused trouble with the new, gnulib-added "LINK_WARNING_H = $(top_srcdir)/.#bootmp/..." line. Jim Meyering 2007-02-18 12:06:01 +01:00
  • 516f42ab40 * bootstrap.conf (gnulib_modules): Add c-strcase. Remove strcase. * src/dircolors.c: Include c-strcase.h. (dc_parse_stream): Use c_strcasecmp rather than strcasecmp to avoid unreliable results in locales like Turkish where strcasecmp is incompatible with the C locale. Paul Eggert 2007-02-15 08:16:30 +01:00
  • d163cd681a Also check for and print stderr output, in case a program fails. * tests/misc/tty-eof: Occasionally (not reproducible), this test would fail, with one or more programs exiting nonzero, e.g., tty-eof: sha224sum exited with status 1 (expected 0) Now, maybe we'll get a clue, the next time that happens. Jim Meyering 2007-02-13 22:27:27 +01:00
  • 0d8ca457b3 * .x-sc_useless_cpp_parens: Ignore a false-positive in a shell script. Jim Meyering 2007-02-12 20:09:12 +01:00
  • e152d05d82 * tests/misc/pwd-unreadable-parent: Skip the test if we're definitely using the replacement. * tests/misc/Makefile.am (TESTS_ENVIRONMENT): Define CONFIG_HEADER. Jim Meyering 2007-02-12 01:20:20 +01:00
  • a09b047947 Remove excess leading spaces that would make help2man misbehave. * src/printf.c (usage): Remove excess spaces on 2nd line of %b desc. * src/nl.c (usage): Remove excess spaces on 2nd line of pBRE desc. * src/dd.c (usage): Remove excess spaces on 2nd line of sync desc. * src/date.c (usage): Use two spaces after each optional flag, not one. Reported by Thomas Huriaux in <http://bugs.debian.org/410407>. Jim Meyering 2007-02-10 22:30:18 +01:00
  • bbb61fa617 * Makefile.maint (longopt_re): Relax the regexp, making square brackets optional, so it matches the newly reported violations, too. Jim Meyering 2007-02-10 16:17:41 +01:00
  • 0c2d21d3f2 * src/csplit.c (usage): Use two spaces (not one) to separate each option string from its description, so help2man formats the derived man page properly. Reported by Thomas Huriaux in <http://bugs.debian.org/410407>. * src/df.c (usage): Likewise. * src/du.c (usage): Likewise. * src/install.c (usage): Likewise. * src/ls.c (usage): Likewise. Jim Meyering 2007-02-10 16:15:34 +01:00
  • d282370566 Test for today's gnulib/lib/getcwd.c fix affecting pwd and readlink * NEWS: Mention the bug fix. * tests/misc/pwd-unreadable-parent: New file. * tests/misc/Makefile.am (TESTS): Ad pwd-unreadable-parent. Jim Meyering 2007-02-03 20:02:48 +01:00
  • b28a8851ed * NEWS: Document fix for cp --preserve=mode. * src/copy.c (copy_internal): Omit the group- or other-writeable permissions when creating a directory, to avoid a race condition if the special mode bits aren't right just after the directory is created. * src/cp.c (make_dir_parents_private): Likewise. * tests/cp/parent-perm-race: Test for the "cp --preserve=mode" race fix in copy.c. Paul Eggert 2007-02-03 18:45:46 +01:00
  • 1c73876f5f * NEWS: Document fix for cp --parents. * src/cp.c (make_dir_parents_private): Report the error sooner with "cp --parents DIR/FILE DEST" when DIR is a non-directory, thus not creating the directory, DEST/DIR. * tests/cp/cp-parents: Test for the non-race-condition bug fixed by the above change. Paul Eggert 2007-02-03 18:12:11 +01:00
  • 251f774621 * src/nl.c (proc_text): Use "NULL", not "(struct re_registers *) 0". Jim Meyering 2007-02-02 08:57:47 +01:00
  • 1d72903faf * src/c99-to-c89.diff: Make shred.c Index: and a/b prefixes consistent, so this can be applied with patch -p0. Reported by Matthew Woehlke. Jim Meyering 2007-02-02 01:22:58 +01:00
  • 6d8e33952a Merge branch 'master' of /cu Jim Meyering 2007-02-01 18:03:59 +01:00
  • 82276cbd2e * vc-list-files: Select column 2, not 3 (hg-0.9.3's manifest format now has only two columns). Jim Meyering 2007-01-30 23:07:38 +01:00
  • c5d2da8ac8 * coreutils.texi: @item -> @itemx to fix some typos. Paul Eggert 2007-01-30 22:56:48 +01:00
  • 31bb8a431a * coreutils.texi (mkdir invocation): Say how to set the file permission bits of a parent directory with mkdir -p. Paul Eggert 2007-01-30 22:54:34 +01:00
  • c544a36826 Document new syntax: "chown +0:+287 file", "chgrp +99 file" * coreutils.texi (Disambiguating names and IDs): New section. (chown invocation, chgrp invocation): Mention the new syntax with an xref to the new section. Jim Meyering 2007-01-29 18:09:57 +01:00
  • bbe4be0c9a Regenerate .cvsignore and .gitignore files. Jim Meyering 2007-01-29 15:38:50 +01:00
  • 9f2adbf0be Merge branch 'master' of /cu Jim Meyering 2007-01-29 15:32:39 +01:00
  • 449a3751d1 Plug a leak in ls. * src/ls.c (print_dir): Don't leak a "DIR"+fd upon failure to determine dev/inode or upon detecting a symlink loop. Jim Meyering 2007-01-29 14:18:28 +01:00
  • e4eaba04dd * src/ls.c: Rename three global variables. (cwd_file): Rename from 'files'. (cwd_n_alloc): Rename from 'nfiles'. (cwd_n_used): Rename from 'files_index'. Jim Meyering 2007-01-29 14:06:45 +01:00
  • fc9b328ab4 Shave 8 bytes off the size of "struct fileinfo". * src/ls.c (fileinfo): Put all members of type "bool" together. Jim Meyering 2007-01-29 12:25:01 +01:00
  • c1f8d48387 Modify "ls" to sort its data faster, using the new gnulib mpsort module rather than qsort. This is particularly a win in environments where strcoll is slow, since mpsort typically calls strcoll less often than qsort does. * bootstrap.conf (gnulib_modules): Add mpsort. * src/ls.c: Include mpsort.h. (sorted_file, sorted_file_alloc): New vars, for a new vector of pointers to the file info, for speed. (clear_files, extract_dirs_from_files, sort_files, print_current_files): (print_many_per_line, print_horizontal, print_with_commas): (calculate_columns): Set and use new vector. (initialize_ordering_vector): New function. Paul Eggert 2007-01-29 12:08:52 +01:00
  • e7420f9781 Regenerate .cvsignore and .gitignore files, and reflect recent removal of string.h-related lib/*.h files Jim Meyering 2007-01-27 00:08:36 +01:00
  • 2b0483aa03 Adjust to today's change to gnulib, which added a module for string.h to replace the little include files like strcase.h. * src/dircolors.c: Don't include strcase.h. * src/system.h: Don't include mempcpy.h, memrchr.h, stpcpy.h, strpbrk.h. Paul Eggert 2007-01-26 23:58:37 +01:00
  • 8fb6d7a9b9 Merge branch 'master' of /cu Jim Meyering 2007-01-26 21:24:30 +01:00
  • 9140950afb * src/dd.c (advance_input_after_read_error): Change diagnostic to say "invalid file offset" rather than "screwy file offset". Jim Meyering 2007-01-26 16:37:37 +01:00
  • cee06314e1 Merge branch 'master' of /cu Jim Meyering 2007-01-26 14:00:36 +01:00
  • ebc2235bd7 merge from trunk Jim Meyering 2007-01-26 11:15:31 +01:00
  • cece28a8bc merge copyright line conflict Jim Meyering 2007-01-26 11:13:44 +01:00
  • e0b3b059b2 * .x-sc_cast_of_argument_to_free: Remove this file. * Makefile.am (EXTRA_DIST): Likewise. Jim Meyering 2007-01-26 11:11:15 +01:00