(regex_compile) <normal_char>: Pay attention to multibyteness.
[gnulib.git] / lib / ChangeLog
index 8468ace..301e187 100644 (file)
@@ -1,3 +1,47 @@
+2000-08-07  Paul Eggert  <eggert@twinsun.com>
+
+       Standardize on "memory exhausted" instead of "Memory exhausted"
+       or "virtual memory exhausted".
+       * obstack.c (print_and_abort): Use "memory exhausted", not
+       "virtual memory exhausted".
+       * same.c (same_name): Invoke xalloc_die instead of printing
+       our own message.
+       * userspec.c (parse_user_spec): Likewise.
+       * bumpalloc.h: comment fix
+       * same.c, userspec.c: Include xalloc.h.
+
+       * xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
+       not char *const and pointing to a constant array.
+       * xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
+       (xrealloc): Comment fix.
+
+       * userspec.c (parse_user_spec):
+       Don't translate a message until just before returning,
+       to avoid unnecessary translation.
+
+2000-08-07  Jim Meyering  <meyering@lucent.com>
+
+       * addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
+       chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
+       fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
+       getgroups.c, gethostname.c, getopt.h, group-member.c,
+       hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
+       linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
+       memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
+       pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
+       stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
+       strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
+       utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
+       yesno.c: Back out Copyright date changes for each file with no change
+       this year.  This eases coordination with other programs using the same
+       source code modules.  From Paul Eggert.
+
+2000-08-03  Greg McGary  <greg@mcgary.org>
+
+       * regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
+       ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
+       (EXTEND_BUFFER): Use them.
+
 2000-08-01  Jim Meyering  <meyering@lucent.com>
 
        * dirname.c (ISSLASH): Define.
@@ -8,7 +52,7 @@
 
 2000-07-31  Paul Eggert  <eggert@twinsun.com>
 
-       * lib/quotearg.c (quotearg_n_options): Don't make the initial
+       * quotearg.c (quotearg_n_options): Don't make the initial
        slot vector a constant, since it might get modified.
 
 2000-07-31  Jim Meyering  <meyering@lucent.com>
 
 2000-07-23  Paul Eggert  <eggert@twinsun.com>
 
-       * lib/quotearg.c:
+       * quotearg.c:
        Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
        so that mbstate_t is always defined.
 
 
 2000-07-23  Paul Eggert  <eggert@twinsun.com>
 
-       * lib/quotearg.c: Streamline by invoking multibyte code only if needed.
+       * quotearg.c: Streamline by invoking multibyte code only if needed.
        <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
        (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
        (quotearg_buffer_restyled): If a unibyte locale, don't bother to
 2000-07-03  Paul Eggert  <eggert@twinsun.com>
        and Bruno Haible  <haible@clisp.cons.org>
 
-       * lib/quotearg.c (mbrtowc):
+       * quotearg.c (mbrtowc):
        Assign to *pwc, and return 1 only if result is nonzero.
        (iswprint): Use ISPRINT when substituting our own mbrtowc.