* lib/quotearg.h (quotearg_free): New decl.
[gnulib.git] / ChangeLog
index 3dc6ed0..9269f39 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,187 @@
+2006-11-08  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * lib/quotearg.h (quotearg_free): New decl.
+       * lib/quotearg.c (quotearg_free): New function.
+       (slot0, nslots, slotvec0, slotvec):
+       Now file-scope so that quotearg_free can get at them.
+
+2006-11-08  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       Sync from Automake.
+       * build-aux/gnupload: Add missing 'gnu' to example URL.
+       Report by Karl Berry.
+
+2006-11-08  Bruno Haible  <bruno@clisp.org>
+
+       * m4/inline.m4 (gl_INLINE): Also test __NO_INLINE__.
+       Suggested by Paul Eggert.
+
+2006-11-08  Jim Meyering  <jim@meyering.net>
+
+       * lib/fts.c [!_LGPL_PACKAGE]: Don't include fcntl--.h twice.
+       It's already included if !_LIBC.
+       (fts_safe_changedir): Add a comment.
+
+2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * m4/longlong.m4 (AC_TYPE_LONG_LONG_INT): Detect bug in
+       Tandem NonStop Kernel (OSS) cc -O circa 2004, reported by
+       Matthew Woehlke.
+
+       * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Move
+       definitions up, to avoid colliding with change below.
+       (static_inline) [HAVE_INLINE]: New macro.
+       (xnmalloc, xnrealloc, x2nrealloc, xcharalloc):
+       Provide extern decls when !HAVE_INLINE.  Do not define unless
+       static_inline is defined, either by us or by xmalloc.c.  Use
+       static_inline rather than static inline.
+       (XCALLOC): Optimize sizeof(T) = 1 case.
+       * lib/xmalloc.c (static_inline) [!HAVE_INLINE]: New macro.
+
+2006-11-07  Bruno Haible  <bruno@clisp.org>
+
+       * lib/xalloc.h (XNMALLOC): Restore optimization of sizeof(T) = 1 case.
+       * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require gl_INLINE instead of
+       AC_C_INLINE.
+       * modules/xalloc (Files): Add m4/inline.m4.
+
+2006-11-07  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * README: Fix typo.
+       * doc/gnulib.texi (Miscellaneous Notes): Likewise, rename...
+       (Miscellanous Notes): ...from this.
+
+2006-11-07  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * m4/flexmember.m4 (AC_C_FLEXIBLE_ARRAY_MEMBER):
+       Mention that offsetof should be used instead of sizeof.
+       From Bruno Haible.
+
+2006-11-07  Bruno Haible  <bruno@clisp.org>
+
+       * lib/w32spawn.h (prepare_spawn): Use XNMALLOC instead of xmalloc.
+
+2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
+
+       Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
+       * lib/gl_anyavltree_list2.h (create_subtree_with_contents):
+       (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
+       (gl_tree_add_before, gl_tree_add_after):
+       Use XMALLOC instead of xmalloc, and XCALLOC instead of xzalloc.
+       * lib/gl_anyhash_list2.h (hash_resize): Likewise.
+       * lib/gl_anylinked_list2.h (gl_linked_create_empty, gl_linked_create):
+       (gl_linked_add_first, gl_linked_add_last, gl_linked_add_before):
+       (gl_linked_add_after, gl_linked_add_at): Likewise.
+       * lib/gl_anyrbtree_list2.h (create_subtree_with_contents):
+       (gl_tree_create, gl_tree_add_first, gl_tree_add_last):
+       (gl_tree_add_before, gl_tree_add_after): Likewise.
+       * lib/gl_anytree_list2.h (gl_tree_create_empty): Likewise.
+       * lib/gl_anytree_oset.h (gl_tree_create_empty): Likewise.
+       * lib/gl_anytreehash_list1.h (add_to_bucket): Likewise.
+
+2006-11-06  Ralf Wildenhues  <Ralf.Wildenhues@gmx.de>
+
+       * lib/gl_oset.h: Use C comment style, not C++ comment style.
+
+2006-11-06  Bruno Haible  <bruno@clisp.org>
+
+       * m4/inline.m4: New file.
+       * m4/gl_list.m4 (gl_LIST): Require gl_INLINE.
+       * modules/list (Files): Add m4/inline.m4.
+       * modules/oset (Files): Likewise.
+
+2006-11-06  Paul Eggert  <eggert@cs.ucla.edu>
+
+       * lib/idcache.c: Include <stddef.h>, for offsetof.
+       (struct userid.name): Change from char * to a flexible array member.
+       All uses changed.
+       * modules/idcache (Depends-on): Add flexmember.
+
+       * MODULES.html.sh (Core language properties): New module flexmember.
+       * modules/flexmember, m4/flexmember.m4: New files.
+
+       * lib/xalloc.h (xnmalloc, xnrealloc, x2nrealloc): Now static
+       inline functions that are identical with the old xnmalloc_inline,
+       xnrealloc_inline, x2nrealloc_inline of lib/xmalloc.c.  This is so
+       that we can avoid some unnecessary integer multiplications and
+       divisions in the common case where the element size is known at
+       compile time.
+       (XNMALLOC) [HAVE_INLINE]: Remove special case, which is no longer
+       needed.
+       (xnboundedmalloc): Remove.
+       (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): Use lower-case letters for
+       arguments, for consistency with rest of this header.
+       (xcharalloc): Rewrite using XNMALLOC.
+       * lib/xmalloc.c (xnmalloc_inline, xnmalloc, xnrealloc_inline):
+       (xnrealloc, x2nrealloc_inline, x2nrealloc): Remove.  The *_inline
+       versions have been moved to lib/xalloc.h and renamed to be the
+       non-*_inline versions.
+       (xmalloc, xrealloc): Implement without reference to the xnmalloc
+       and xnrealloc functions, since those functions are now inline and
+       now call us.
+       (x2realloc): Invoke x2realloc, not x2realloc_inline, to accommodate
+       renaming described above.
+       * m4/xalloc.m4 (gl_PREREQ_XMALLOC): Remove AC_C_INLINE since
+       xmalloc.c no longer uses inline directly.  gl_PREREQ_XALLOC now
+       captures the dependency in AC_C_INLINE.
+
+       New module canonicalize-lgpl, proposed by Charles Wilson in
+       <http://lists.gnu.org/archive/html/bug-gnulib/2006-11/msg00020.html>
+       with a few small changes afterwards.
+       * MODULES.html.sh (File system functions): New module
+       canonicalize-lgpl.
+       * lib/canonicalize.h: Add comments for canonicalize_filename_mode
+       and canonicalize_file_name.
+       * lib/canonicalize-lgpl.c, m4/canonicalize-lgpl.m4:
+       * modules/canonicalize-lgpl: New files.
+
+2006-11-05  Bruno Haible  <bruno@clisp.org>
+
+       * gnulib-tool (func_import, func_create_testdir): Create directories
+       also for files in subdirectories of lib/.
+
+2006-11-05  Bruno Haible  <bruno@clisp.org>
+
+       * lib/gl_array_list.c (gl_array_iterator_next): Make pointer decrement
+       ANSI C compliant.
+
+2006-11-03  Bruno Haible  <bruno@clisp.org>
+
+       Simplify xmalloc expressions. Add overflow check in xmalloc arguments.
+       * m4/xalloc.m4 (gl_PREREQ_XALLOC): Require AC_C_INLINE.
+       * lib/xalloc.h (XMALLOC, XNMALLOC, XZALLOC, XCALLOC): New macros.
+       (xnboundedmalloc): New inline function.
+       * lib/classpath.c (new_classpath): Use XNMALLOC instead of xmalloc.
+       * lib/clean-temp.c (create_temp_dir): Use XNMALLOC, XMALLOC instead of
+       xmalloc.
+       * lib/concatpath.c (concatenated_pathname): Use XNMALLOC instead of
+       xmalloc.
+       * lib/fatal-signal.c (at_fatal_signal): Use XNMALLOC instead of xmalloc.
+       * lib/findprog.c (find_in_path): Use XNMALLOC instead of xmalloc.
+       * lib/gl_array_list.c (gl_array_create_empty): Use XMALLOC instead of
+       xmalloc.
+       (gl_array_create): Use XNMALLOC, XMALLOC instead of xmalloc.
+       * lib/gl_array_oset.c (gl_array_create_empty): Use XNMALLOC instead of
+       xmalloc.
+       * lib/gl_avltree_oset.c (gl_tree_add_first, gl_tree_add_before,
+       gl_tree_add_after): Use XMALLOC instead of xmalloc.
+       * lib/gl_carray_list.c (gl_carray_create_empty): Use XMALLOC instead of
+       xmalloc.
+       (gl_carray_create): Use XNMALLOC, XMALLOC instead of xmalloc.
+       * lib/gl_rbtree_oset.c (gl_tree_add_first, gl_tree_add_before,
+       gl_tree_add_after): Use XMALLOC instead of xmalloc.
+       * lib/gl_sublist.c (gl_sublist_create): Use XMALLOC instead of xmalloc.
+       * lib/pagealign_alloc.c (new_memnode): Use XMALLOC instead of xmalloc.
+       * lib/sh-quote.c (shell_quote_argv): Use XNMALLOC instead of xmalloc.
+       * lib/xvasprintf.c (xstrcat): Use XNMALLOC instead of xmalloc.
+
+2006-11-03  Bruno Haible  <bruno@clisp.org>
+
+       * lib/c-ctype.h [C++]: Define functions without name mangling.
+       * lib/fwriteerror.h [C++]: Likewise.
+       * lib/gcd.h [C++]: Likewise.
+       * lib/linebreak.h [C++]: Likewise.
+
 2006-11-03  Paul Eggert  <eggert@cs.ucla.edu>
 
        * lib/canonicalize.h: (canonicalize_mode_t, CAN_EXISTING):
        * lib/mkdir-p.c: Include dirname.h, for IS_ABSOLUTE_FILE_NAME.
        (make_dir_parents): Use a subprocess if necessary.  New arg WD;
        all users changed.
-       * lib/savewd.c, savewd.h: New files.
+       * lib/savewd.c, lib/savewd.h: New files.
 
 2006-09-15  Jim Meyering  <jim@meyering.net>
 
 
 2006-08-29  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * lib/isapipe.c, isapipe.h: New files.
+       * lib/isapipe.c, lib/isapipe.h: New files.
 
 2006-08-29  Jim Meyering  <jim@meyering.net>
 
 
        * m4/cycle-check.m4: New file.
        Require gl_STRUCT_DEV_INO and gl_SAME_INODE.
-       * m4/dev-ino.m4, same-inode.m4: New files.
+       * m4/dev-ino.m4, m4/same-inode.m4: New files.
 
 2006-08-10  Eric Blake  <ebb9@byu.net>
 
 
 2006-08-08  Eric Blake  <ebb9@byu.net>
 
-       * lib/verror.h, verror.c: New files.
+       * lib/verror.h, lib/verror.c: New files.
 
 2006-08-08  Eric Blake  <ebb9@byu.net>
 
 
 2006-07-22  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * lib/close-stream.c, close-stream.h: New files.
+       * lib/close-stream.c, lib/close-stream.h: New files.
 
 2006-07-22  Bruno Haible  <bruno@clisp.org>
 
        * modules/oset: New file.
        * modules/array-oset: New file.
        * modules/avltree-oset, modules/avltree-oset-tests: New files.
-       * modules/rbtree-oset, rbtree-oset-tests: New files.
+       * modules/rbtree-oset, modules/rbtree-oset-tests: New files.
        * tests/test-carray_list.c: New file.
        * tests/test-linked_list.c: New file.
        * tests/test-avltree_list.c: New file.
 
 2006-07-16  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * lib/dirchownmod.c, dirchownmod.h, mkancesdirs.c, mkancesdirs.h:
-       New files.
+       * lib/dirchownmod.c, lib/dirchownmod.h, lib/mkancesdirs.c:
+       * lib/mkancesdirs.h: New files.
        * lib/mkdir-p.c: Don't include alloca.h, stdio.h, sys/types.h,
        unistd.h, string.h, chdir-safer.h, dirname.h, lchmod.h, lchown.h,
        save-cwd.h.  Instead, include dirchownmod.h and mkancesdirs.h.
 2006-04-18  Derek Price  <derek@ximbiot.com>
            Paul Eggert  <eggert@cs.ucla.edu>
 
-       * m4/_inttypes_h.m4, full-header-path.m4, include_next: New files.
+       * m4/_inttypes_h.m4, m4/full-header-path.m4, m4/include_next.m4:
+       New files.
 
 2006-04-18  Derek Price  <derek@ximbiot.com>
            Paul Eggert  <eggert@cs.ucla.edu>
 
        * lib/version-etc.c (COPYRIGHT_YEAR): Update to 2006.
 
-       * lib/chdir-safer.h, chdir-safer.c: New files.
+       * lib/chdir-safer.h, lib/chdir-safer.c: New files.
 
        * lib/modechange.c (mode_compile): Reject an invalid mode string
        that starts with an octal digit.  From Andreas Gruenbacher.
 
 2005-12-16  Jim Meyering  <jim@meyering.net>
 
-       * lib/fprintftime.c, fprintftime.h: New files.
+       * lib/fprintftime.c, lib/fprintftime.h: New files.
 
 2005-12-15  Simon Josefsson  <jas@extundo.com>
 
 
        * lib/gc-gnulib.c: Add MD2.  Implement gc_hash_* API.
 
-       * lib/md2.h, md2.c: New files.
+       * lib/md2.h, lib/md2.c: New files.
 
 2005-10-28  Paul Eggert  <eggert@cs.ucla.edu>
 
 
 2005-10-21  Simon Josefsson  <jas@extundo.com>
 
-       * lib/des.h, des.c: New files.
+       * lib/des.h, lib/des.c: New files.
 
        * lib/gc-gnulib.c: Support DES.c
 
 2005-10-21  Simon Josefsson  <jas@extundo.com>
 
-       * lib/arctwo.h, arctwo.c: New files.
+       * lib/arctwo.h, lib/arctwo.c: New files.
 
        * lib/gc-gnulib.c: Support ARCTWO.
 
 
 2005-10-18  Simon Josefsson  <jas@extundo.com>
 
-       * lib/md4.h, md4.c: New files, based on md5.?.
+       * lib/md4.h, lib/md4.c: New files, based on md5.?.
 
 2005-10-17  Stepan Kasal  <kasal@ucw.cz>
 
 
 2005-10-15  Simon Josefsson  <jas@extundo.com>
 
-       * lib/rijndael-api-fst.h, rijndael-api-fst.c: New files.
+       * lib/rijndael-api-fst.h, lib/rijndael-api-fst.c: New files.
 
-       * lib/rijndael-alg-fst.h, rijndael-alg-fst.c: New files.
+       * lib/rijndael-alg-fst.h, lib/rijndael-alg-fst.c: New files.
 
 2005-10-14  Simon Josefsson  <jas@extundo.com>
 
 
 2005-10-14  Simon Josefsson  <jas@extundo.com>
 
-       * lib/arcfour.h, arcfour.c: New files.
+       * lib/arcfour.h, lib/arcfour.c: New files.
 
 2005-10-14  Roland McGrath  <roland@redhat.com>
 
 
 2005-10-12  Simon Josefsson  <jas@extundo.com>
 
-       * m4/gc-md5.m4, gc-hmac-md5: New files.
+       * m4/gc-md5.m4, m4/gc-hmac-md5.m4: New files.
 
        * m4/gc.m4: Don't call gl_MD5, gl_MEMXOR or gl_HMAC_MD5.
 
 
 2005-10-11  Simon Josefsson  <jas@extundo.com>
 
-       * lib/crc.h, crc.c: New files.
+       * lib/crc.h, lib/crc.c: New files.
 
        * lib/gc.h (gc_hash_buffer): Add doc.
 
        * lib/md5.h (MD5_DIGEST_SIZE, MD5_BLOCK_SIZE): Add, see also
        <http://sourceware.org/bugzilla/show_bug.cgi?id=1423>.
 
-       * lib/memxor.h, memxor.c: New files.
+       * lib/memxor.h, lib/memxor.c: New files.
 
        * lib/getaddrinfo.h: Don't protect sys/types.h with HAVE_SYS_TYPES_H,
        we assume all systems have it, suggested by Jim Meyering
 2005-08-24  Jim Meyering  <jim@meyering.net>
 
        Sync from coreutils.
-       * lib/fcntl--.h, fcntl-safer.h, open-safer.c: New files.
+       * lib/fcntl--.h, lib/fcntl-safer.h, lib/open-safer.c: New files.
 
 2005-08-24  Jim Meyering  <jim@meyering.net>
 
 
        * lib/getline.h, getline.c: Rewrite.
 
-       * lib/getdelim.h, getdelim.c: New files, ported from glibc.
+       * lib/getdelim.h, lib/getdelim.c: New files, ported from glibc.
 
 2005-07-31  Bruno Haible  <bruno@clisp.org>
 
 2005-07-07  Paul Eggert  <eggert@cs.ucla.edu>
 
        * lib/regex.c, regex.h: Sync from libc.
-       * lib/regcomp.c, regexec_internal.c, regex_internal.h, regexec.c:
+       * lib/regcomp.c, lib/regexec_internal.c, lib/regex_internal.h:
+       * lib/regexec.c:
        New files, synced from libc, except that regex_internal.h
        currently has a small porting fix.
 
 
 2005-06-28  Simon Josefsson  <jas@extundo.com>
 
-       * lib/check-version.h, check-version.c: New files.
+       * lib/check-version.h, lib/check-version.c: New files.
 
 2005-06-28  Simon Josefsson  <jas@extundo.com>
 
 2005-05-29  Derek Price  <derek@ximbiot.com>
            Paul Eggert  <eggert@cs.ucla.edu>
 
-       * lib/glob_.h, glob.c: New files.
+       * lib/glob_.h, lib/glob.c: New files.
 
 2005-05-27  Paul Eggert  <eggert@cs.ucla.edu>
 
 2005-05-25  Derek Price  <derek@ximbiot.com>
            Paul Eggert  <eggert@cs.ucla.edu>
 
-       * modules/getlogin_r: New files.
-
-2005-05-25  Derek Price  <derek@ximbiot.com>
-           Paul Eggert  <eggert@cs.ucla.edu>
-
-       * m4/getlogin_r.m4: New files.
-
-2005-05-25  Derek Price  <derek@ximbiot.com>
-           Paul Eggert  <eggert@cs.ucla.edu>
-
+       * modules/getlogin_r, m4/getlogin_r.m4: New files.
        * lib/getlogin_r.c, getlogin_r.h: New files.
 
 2005-05-25  Bruno Haible  <bruno@clisp.org>
 
 2005-05-17  Jim Meyering  <jim@meyering.net>
 
-       * lib/fts.c, fts_.h: New files, from coreutils.
+       * lib/fts.c, lib/fts_.h: New files, from coreutils.
 
 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
 
 2005-05-14  Paul Eggert  <eggert@cs.ucla.edu>
 
        Sync from coreutils.
-       * lib/unlinkdir.c, unlinkdir.h: New files.
+       * lib/unlinkdir.c, lib/unlinkdir.h: New files.
        * lib/gethrxtime.c, lib/gethrxtime.h, lib/getpass.h, lib/mountlist.h,
        lib/path-concat.c, lib/regex.h, lib/unlocked-io.h, lib/xtime.h:
        White space changes only.
 
 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * m4/gethrxtime.m4, xnanosleep.m4: New files.
+       * m4/gethrxtime.m4, m4/xnanosleep.m4: New files.
        * m4/gettime.m4 (gl_GETTIME): Check for nanotime.
 
 2005-02-25  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * lib/gethrxtime.h, gethrxtime.c, xtime.h: New files.
+       * lib/gethrxtime.h, lib/gethrxtime.c, lib/xtime.h: New files.
        * lib/timespec.h (gettime): Return void, since it always
        succeeds now.  All uses changed.
        * lib/gettime.c (gettime) Likewise.
 
 2005-02-22  Simon Josefsson  <jas@extundo.com>
 
-       * lib/iconvme.h, iconvme.c: New files, from libc.
+       * lib/iconvme.h, lib/iconvme.c: New files, from libc.
 
 2005-02-22  Simon Josefsson  <jas@extundo.com>
 
 2005-01-18  Jim Meyering  <jim@meyering.net>
 
        Merge from coreutils.
-       * m4/chdir-long.m4, openat.m4: New files.
+       * m4/chdir-long.m4, m4/openat.m4: New files.
        * m4/save-cwd.m4 (gl_SAVE_CWD): Add AC_LIBSOURCES for save-cwd.c,
        save-cwd.h.  Add AC_LIBOBJ for save-cwd.
        * m4/chown.m4 (gl_FUNC_CHOWN): When cross-compiling, assume that chown
 
 2004-11-10  Simon Josefsson  <jas@extundo.com>
 
-       * lib/getaddrinfo.h, getaddrinfo.c: New files.
+       * lib/getaddrinfo.h, lib/getaddrinfo.c: New files.
 
 2004-11-10  Simon Josefsson  <jas@extundo.com>
 
 
 2004-09-30  Simon Josefsson  <jas@extundo.com>
 
-       * lib/snprintf.h, snprintf.c: New files.
+       * lib/snprintf.h, lib/snprintf.c: New files.
 
 2004-09-30  Sergey Poznyakoff  <gray@Mirddin.farlep.net>
 
 
 2004-08-09  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * m4/uint32_t.m4, uintptr_t.m4: New files.
+       * m4/uint32_t.m4, m4/uintptr_t.m4: New files.
        * m4/sha1.m4: Renamed from sha.m4.
        (gl_SHA1): Renamed from gl_SHA.  All uses changed.
 
 
 2004-08-08  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * lib/xalloc-die.c: New files.
+       * lib/xalloc-die.c: New file.
        * lib/xalloc.h (xalloc_fail_func, xalloc_msg_memory_exhausted): Remove.
        All uses removed.
        * lib/xmalloc.c (xalloc_fail_func, xalloc_msg_memory_exhausted):
 
        More merge from coreutils.
 
-       * m4/utimens.m4, utimecmp.m4: New files.
+       * m4/utimens.m4, m4/utimecmp.m4: New files.
        * m4/backupfile.m4, euidacces.m4, acl.m4, afs.m4, calloc.m4, dirfd.m4,
        fsusage.m4, jm-macros.m4, ls-mntd-fs.m4, md5.m4, mountlist.m4,
        prereq.m4, sha.m4: Import changes from coreutils.
 2004-08-06  Paul Eggert  <eggert@cs.ucla.edu>
 
        More merge from coreutils.
-       * modules/raise, modules/readtokens0, modules/utimens,
-       modules/utimecmp, module/xnanosleep: New files.
+       * modules/raise, modules/readtokens0, modules/utimens:
+       modules/utimecmp, module/xnanosleep: New files.
        * modules/strftime: Add lib/strftime.h.
        Change include from <time.h> to "strftime.h".
        * modules/yesno: Add lib/yesno.h.
        we don't compile these functions for tar.
 
        More merges from coreutils.
-       * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h,
-       lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c,
-       lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
+       * lib/raise.c, lib/readtokens0.h, lib/readtokens0.c, lib/strftime.h:
+       * lib/utimens.h, lib/utimens.c, lib/utimecmp.h, lib/utimecmp.c:
+       lib/xnanosleep.h, lib/xnanosleep.c, lib/yesno.h: New files.
        * lib/addext.c: Remove; no longer needed.
        * lib/yesno.c, lib/argmatch.h, lib/argmatch.c, lib/backupfile.h,
        lib/backupfile.c, lib/euidaccess.c, lib/filemode.c, lib/closeout.c,
 
        Merge from coreutils.
 
-       * m4/c-strtod.m4, canonicalize.m4, fcntl-safer.m4, getcwd-path-max.m4:
-       New files.
+       * m4/c-strtod.m4, m4/canonicalize.m4, m4/fcntl-safer.m4:
+       * m4/getcwd-path-max.m4: New files.
 
        * m4/dos.m4 (gl_AC_DOS): filesystem -> file system renaming.
        FILESYSTEM_PREFIX_LEN ->
 
        * lib/.gdb-history: Remove; this doesn't belong here.
 
-       * lib/c-strtod.c, c-strtod.h, c-strtold.c, cycle-check.c,
-       cycle-check.h, dev-ino.h, canonicalize.h, canonicalize.c,
-       fcntl-safer.h, fcntl-safer.c, getcwd.c: New files.
+       * lib/c-strtod.c, lib/c-strtod.h, lib/c-strtold.c, lib/cycle-check.c:
+       * lib/cycle-check.h, lib/dev-ino.h, lib/canonicalize.h:
+       * lib/canonicalize.c, lib/fcntl-safer.h, lib/fcntl-safer.c:
+       * lib/getcwd.c: New files.
 
        * lib/dirname.h: Include <stdbool.h>.
        (FILE_SYSTEM_PREFIX_LEN): Renamed from FILESYSTEM_PREFIX_LEN,
 2004-08-05  Paul Eggert  <eggert@cs.ucla.edu>
 
        Merge from coreutils.
-       * modules/c-strtod, modules/c-strtold, modules/canonicalize,
-       modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
+       * modules/c-strtod, modules/c-strtold, modules/canonicalize:
+       modules/cycle-check, modules/fcntl-safer, modules/getcwd: New files.
        * modules/path-concat: Don't depend on strdup.
 
 2004-08-03  Simon Josefsson  <jas@extundo.com>
 
 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
 
-       * lib/argz.c, argz_.h: New files, which are autoupdated from libtool.
+       * lib/argz.c, lib/argz_.h: New files, which are autoupdated from
+       libtool.
 
 2004-06-22  Paul Eggert  <eggert@cs.ucla.edu>
 
 
        Merge from coreutils.
 
-       * lib/imaxtostr.c, inttostr.c, inttostr.h, offtostr.c, umaxtostr.c:
-       New files.
+       * lib/imaxtostr.c, lib/inttostr.c, lib/inttostr.h, lib/offtostr.c:
+       * lib/umaxtostr.c: New files.
 
        * lib/getdate.h: Include stdbool.h, and timespec.h instead of
        the usual <time.h> dance.
        Include cloexec.h and xalloc.h.
        (getloadavg): Restore LC_NUMERIC locale after setting it temporarily.
        Use set_cloexec_flag rather than rolling our own.
-       * lib/cloexec.c, cloexec.h: New files.
+       * lib/cloexec.c, lib/cloexec.h: New files.
 
 2004-03-29  Paul Eggert  <eggert@twinsun.com>
 
 
 2004-02-23  Karl Berry  <karl@gnu.org>
 
-       * doc/maintain.texi, standards.texi, make-stds.texi: new files
+       * doc/maintain.texi, doc/standards.texi, doc/make-stds.texi: new files
        (from fencepost.gnu.org:/gd/gnuorg).
 
 2004-02-23  Karl Berry  <karl@gnu.org>
 
 2004-01-18  Karl Berry  <karl@gnu.org>
 
-       * doc/gpl.texi, lgpl.texi: new files.
+       * doc/gpl.texi, doc/lgpl.texi: new files.
 
 2004-01-18  Karl Berry  <karl@gnu.org>
 
 
 2003-09-06  Paul Eggert  <eggert@twinsun.com>
 
-       * lib/time_r.c, time_r.h: New files.
+       * lib/time_r.c, lib/time_r.h: New files.
 
        * lib/mktime.c (my_mktime_localtime_r): Remove; all uses changed to
        __localtime_r.
 
 2002-06-22  Jim Meyering  <meyering@lucent.com>
 
-       * lib/c-stack.c, c-stack.h: New files, from diffutils-2.8.2.
+       * lib/c-stack.c, lib/c-stack.h: New files, from diffutils-2.8.2.
 
        * lib/exitfail.c, exitfail.h: Likewise.
        * lib/Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
 
 2002-04-28  Paul Eggert  <eggert@twinsun.com>
 
-       * lib/sig2str.h, sig2str.c: New files.
+       * lib/sig2str.h, lib/sig2str.c: New files.
        * lib/Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
 
 2002-04-28  Paul Eggert  <eggert@twinsun.com>
 
 2002-02-25  Paul Eggert  <eggert@twinsun.com>
 
-       * lib/acl.c, acl.h: New files.
+       * lib/acl.c, lib/acl.h: New files.
        * lib/Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
 
 2002-02-24  Jim Meyering  <meyering@lucent.com>
 
 2002-02-15  Paul Eggert  <eggert@twinsun.com>
 
-       * lib/posixver.c, posixver.h: New files.
+       * lib/posixver.c, lib/posixver.h: New files.
        * lib/Makefile.am (libfetish_a_SOURCES): Add them.
 
 2002-02-02  Paul Eggert  <eggert@twinsun.com>
 
 2002-01-21  Paul Eggert  <eggert@twinsun.com>
 
-       * lib/xmemcoll.h, xmemcoll.c: New files.
+       * lib/xmemcoll.h, lib/xmemcoll.c: New files.
        * lib/Makefile.am (libfetish_a_SOURCES): Add them.
        * lib/memcoll.c: Include errno.h, and declare errno if not defined.
        (memcoll): Set errno to zero if there is no error.
 
 2001-11-01  Jim Meyering  <meyering@lucent.com>
 
-       * lib/dirfd.c, dirfd.h: New files.
+       * lib/dirfd.c, lib/dirfd.h: New files.
        * lib/Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
 
        * lib/hash.c (hash_print) [TESTING]: Clean up.
        Add dup-safer.c, fopen-safer.c.
        (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
 
-       * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h,
-       lib/unistd-safer.h: New files.
+       * lib/dup-safer.c, lib/fopen-safer.c, lib/stdio-safer.h:
+       lib/unistd-safer.h: New files.
 
 2001-02-25  Paul Eggert  <eggert@twinsun.com>
 
 
        * lib/mkstemp.c (__GT_FILE): Define to zero if not defined.
 
-       * lib/mkstemp.c, tempname.c: New files, taken from glibc 2.2.2.
+       * lib/mkstemp.c, lib/tempname.c: New files, taken from glibc 2.2.2.
 
 2001-02-18  Paul Eggert  <eggert@twinsun.com>
 
 
 2000-12-18  Paul Eggert  <eggert@twinsun.com>
 
-       * lib/physmem.h, physmem.c: New files.
+       * lib/physmem.h, lib/physmem.c: New files.
 
        * lib/Makefile.am (libfetish_a_SOURCES): Add physmem.c.
        (noinst_HEADERS): Add physmem.h.
 
        * lib/config.charset: Output a line containing "Packages using this
        file".
-       * lib/ref-add.sed.in, ref-del.sed.in: New files.
+       * lib/ref-add.sed.in, lib/ref-del.sed.in: New files.
        * lib/Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
        ref-del.sed): New rules.
 
 
        * lib/config.charset: New file.
        * lib/localcharset.c: New file.
-       * lib/unicodeio.h, unicodeio.c: New files.
+       * lib/unicodeio.h, lib/unicodeio.c: New files.
        * lib/Makefile.am (DEFS): Add -DLIBDIR=...
        (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
        (noinst_HEADERS): Add unicodeio.h.