5da039c136db9951b50e62e72d01083a47edf339
[gnulib.git] / lib / ChangeLog
1 2003-07-18  Paul Eggert  <eggert@twinsun.com>
2
3         * closeout.h (close_stdout_set_status, close_stdout_status): Remove.
4         * closeout.c: Likewise.  Include "closeout.h" right after config.h,
5         to test that it can stand by itself.  Include "exitfail.h".
6         Clients should set exit_failure instead.
7         (EXIT_FAILURE): Remove; no longer needed.  Do not include <stdlib.h>.
8
9 2003-07-18  Andreas Schwab  <schwab@suse.de>
10
11         * memcoll.c (memcoll) [!HAVE_STRCOLL]: Clear errno.
12
13 2003-07-18  Bruno Haible  <bruno@clisp.org>
14
15         * getndelim2.h: New file.
16         * getndelim2.c: Make into a module of its own. Include config.h,
17         getndelim2.h.
18         (getndelim2): Make non-static. Change return type to ssize_t.
19         * getline.h: Change argument names.
20         * getline.c: Include getndelim2.h instead of getndelim2.c.
21         * getnline.c: Include getndelim2.h.
22
23 2003-07-17  Bruno Haible  <bruno@clisp.org>
24
25         * Makefile.am: Remove file.
26         * Makefile.in: Remove file.
27
28 2003-07-17  Bruno Haible  <bruno@clisp.org>
29
30         * getnline.h: New file.
31         * getnline.c: New file.
32         * getndelim2.c: New file, extracted from getline.c.
33         (getndelim2): Renamed from getdelim2, with added nmax argument.
34         * getline.c: Include getndelim2.c.
35         (getdelim2): Moved out to getndelim2.c.
36         (getline, getdelim): Update.
37
38 2003-07-15    <karl@gnu.org>
39
40         * vasnprintf.c: update from gettext.
41
42 2003-07-15  Jim Meyering  <jim@meyering.net>
43
44         * makepath.c (make_path): Enclose diagnostic in _(...).
45
46 2003-07-14  Paul Eggert  <eggert@twinsun.com>
47
48         * asnprintf.c, asprintf.c, config.charset, gettext.h,
49         localcharset.c, localcharset.h, mkdtemp.c, printf-args.c,
50         printf-args.h, printf-parse.c, printf-parse.h, ref-add.sin,
51         ref-del.sin, setenv.c, unsetenv.c, vasnprintf.c, vasnprintf.h,
52         vasprintf.c, vasprintf.h: Regenerate.  These files are now being
53         updated automatically by ../config/srclist-update.  This changes
54         their license from LPGL to GPL.
55
56 2003-07-14  Jim Meyering  <jim@meyering.net>
57
58         Don't emit diagnostics.  Let callers do that.
59         * save-cwd.c: Don't include "error.h".
60         (save_cwd): Don't call error.  Ensure that errno is valid
61         when returning nonzero.
62
63         * save-cwd.h (restore_cwd): Update prototype.
64         * save-cwd.c (restore_cwd): Remove two parameters.
65         Simplify.  Don't call error upon failure.  Let callers do that.
66         (save_cwd): Mention that Irix 5.3 has the same problem as SunOS4
67         when auditing is enabled.  But don't bother updating the #if.
68
69 2003-07-14  Simon Josefsson  <jas@extundo.com>
70
71         * mempcpy.h: New file.
72         * mempcpy.c: New file.
73
74 2003-07-14  Paul Eggert  <eggert@twinsun.com>
75
76         * ceill.c, expl.c, floorl.c, frexpl.c, ldexpl.c, mathl.h,
77         sincosl.c, sqrtl.c, trigl.c, trigl.h, poll.c, poll_.h, mkstemp.c,
78         unicodeio.c, unicodeio.h, unlocked-io.h:
79         Switch from LGPL to GPL.
80
81 2003-07-11  Alexandre Duret-Lutz  <adl@gnu.org>
82
83         * obstack.h (__INT_TO_PTR): Revert change of 2003-03-13;
84         it breaks C++ compilation.
85         [!__GNUC__ || !__STDC__] (obstack_finish): Cast result to void*.
86
87 2003-07-10  Jim Meyering  <jim@meyering.net>
88
89         * vasnprintf.c: Remove trailing blanks.
90         Make cpp indentation consistent.
91
92 2003-07-09  Paul Eggert  <eggert@twinsun.com>
93
94         * alloca_.h, euidaccess.c, getpass.c, memrchr.c, obstack.h,
95         posixver.c, strftime.c, strnlen.c, strverscmp.c:
96         Switch from LGPL to GPL.
97
98 2003-07-07  Paul Eggert  <eggert@twinsun.com>
99
100         * mktime.c: Fix some boundary cases and remove need for floating point.
101
102         Issue a compile-time diagnostic if time_t is floating point, or if
103         two's complement arithmetic is not in effect, or if arithmetic
104         right shift does not propagate the sign.  These assumptions were
105         all in the original code but they weren't checked.
106
107         (TIME_T_MIDPOINT, verify): New macros.
108         (__isleap): Remove; it has integer overflow problems.
109         (leapyear): New function, without those problems.
110         (ydhms_tm_diff): Remove; splitting into two parts.
111         (ydhms_diff): New function, containing the arithmetic part of
112         the old ydhms_tm_diff function.  Issue a compile-time
113         diagnostic if we are not using C99 integer division.
114         Avoid casts when possible.
115         (guess_time_tm): New function, containing the checking part of
116         the old ydhms_tm_diff function.  Return the new value, rather than
117         the difference between it and the old.  Accept a new argument T
118         so that *T specifies the old value.  Check for overflow in the result.
119
120         (__mktime_internal): Use a time_t offset, not a long int offset.
121         This undoes the 2003-06-04 change, which is no longer needed now
122         that we have better overflow checking.
123         (localtime_offset): Likewise.
124
125         (__mktime_internal): Avoid harmful overflow on hosts where time_t
126         and long are 64-bit but int is only 32-bit.
127         (ydhms_diff): Use long int to store year1 and yday1.
128         Issue a compile-time diagnostic if long int is not wide enough.
129
130         (__mktime_internal): Use long int to store adjusted year and yday.
131         Use plain C rather than preprocessor commands, if that doesn't
132         affect efficiency.
133         Check for overflow (and try to repair) after each probe
134         rather than checking only at the very end.  This avoids some bugs
135         (e.g., southern hemisphere, behind GMT, and GMT offset at minimum time
136         does not equal GMT offset at maximum time).
137         Use integer to check for overflow rather than floating point; this
138         is more portable to non-IEEE hosts, and is a tad faster.
139         When we detect that we are oscillating between two values,
140         don't check whether tm_isdst has the requested value, since
141         we already know the answer.  When tm_isdst has the wrong value,
142         use a different heuristic to find the right one, based on the
143         extreme values actually observed in practice in tz2003a,
144         rather than the (overly optimistic) "previous 3 calendar quarters".
145
146         (not_equal_tm, print_tm, check_result): Use "const T" rather than
147         "T const" to accommodate glibc style.
148         (check_result): Use less-confusing report format.  "long" -> "long int.
149         (main): Likewise.
150         Don't loop if the iteration overflows time_t.
151         Allow a negative step in the iteration.
152
153 2003-07-01  Paul Eggert  <eggert@twinsun.com>
154
155         * xreadlink.c: Include <sys/types.h> unconditionally, instead of
156         having it depend on HAVE_SYS_TYPES_H.
157
158 2003-06-25  Bruno Haible  <bruno@clisp.org>
159
160         * readlink.c: New file.
161
162 2003-06-20  Bruno Haible  <bruno@clisp.org>
163
164         Assume C89, so PARAMS isn't needed.
165         * unicodeio.h (PARAMS): Remove.
166         * unicodeio.c: Don't use PARAMS.
167
168 2003-06-18  Jim Meyering  <jim@meyering.net>
169
170         Merge changes from coreutils.
171         * readutmp.c: Include <string.h> and <stdlib.h> unconditionally.
172         Remove explicit declarations of xmalloc and realloc.
173         Include xalloc.h.
174         (read_utmp): Remove anachronistic cast of xmalloc.
175
176 2003-06-17  Paul Eggert  <eggert@twinsun.com>
177
178         Assume C89, so PARAMS isn't needed.
179         * backupfile.h (PARAMS): Remove.  All uses removed.
180         * closeout.h, dirname.h, filemode.h, fsusage.h, getdate.h, getline.h,
181         group-member.h, hard-locale.h, hash.h, linebuffer.h, long-options.h,
182         makepath.h, memcasecmp.h, memcoll.h, modechange.h, mountlist.h,
183         path-concat.h, physmem.h, posixtm.h, quote.h, readutmp.h, same.h,
184         save-cwd.h, savedir.h, stdio-safer.h, strtoimax.c, strverscmp.h,
185         unistd-safer.h, version-etc.h, xalloc.h, xreadlink.h, xstrtod.h,
186         xstrtol.h: Likewise.
187         * filemode.h, hard-locale.h, memcoll.h, modechange.h, physmem.h,
188         same.h, strverscmp.h: Do not include config.h; no longer needed.
189         Anyway, config.h should always be included before any other file.
190
191 2003-06-11  Simon Josefsson  <jas@extundo.com>
192
193         * sysexit_.h: New file.
194
195 2003-05-20  Derek Price  <derek@ximbiot.com>
196
197         * stat.c [LSTAT]: Compile/use slash_aware_lstat only if it is necessary.
198
199 2003-06-10  Simon Josefsson  <jas@extundo.com>
200
201         * strchrnul.h: New file.
202         * strchrnul.c: New file.
203
204 2003-06-10  Simon Josefsson <jas@extundo.com>
205
206         * argp.h: New file, from glibc.
207         * argp-ba.c: New file, from glibc.
208         * argp-eexst.c: New file, from glibc.
209         * argp-fmtstream.c: New file, from glibc.
210         * argp-fmtstream.h: New file, from glibc.
211         * argp-fs-xinl.c: New file, from glibc.
212         * argp-help.c: New file, from glibc.
213         * argp-namefrob.h: New file, from glibc.
214         * argp-parse.c: New file, from glibc.
215         * argp-pv.c: New file, from glibc.
216         * argp-pvh.c: New file, from glibc.
217         * argp-xinl.c: New file, from glibc.
218
219 2003-06-07  Jim Meyering  <jim@meyering.net>
220
221         * readtokens.h: Put `Free Software Foundation, Inc.'
222         in place of my name in the copyright comment.
223         Remove definition and uses of __P.
224
225         From coreutils.
226         * stat.c: Don't declare xmalloc explicitly.
227         Instead, include "xalloc.h".
228         * readtokens.c (readtokens): Remove anachronistic casts of xmalloc,
229         xrealloc, and xcalloc return values.
230         * xgetcwd.c (xgetcwd): Include "xgetcwd.h".
231         Improve comment.
232         * xgetcwd.h: Remove definition/uses of PARAMS.
233
234 2003-06-06  Jim Meyering  <jim@meyering.net>
235
236         * stdbool_.h: Renamed from stdbool.h.in.
237
238 2003-06-06  Jim Meyering  <jim@meyering.net>
239
240         Merge from coreutils.
241         * same.c: (same_name): Declare *_basename locals to be `const'.
242         Consolidate declarations and initializations of *_base* locals.
243
244         Merge from coreutils.
245         This avoids a core dump on systems without GNU putenv,
246         when running `env -u SOME_ALREADY_UNSET_VARIABLE'.
247         * putenv.c (__set_errno, LOCK, UNLOCK): Define.
248         (unsetenv): New static function, from GNU libc.
249         (rpl_putenv): Use it.
250
251         * modechange.c: Remove trailing blanks.
252
253         Merge from coreutils.
254         * fsusage.c: Remove declaration of statfs.
255         It conflicted with one from OSF/1 5.1 in <sys/mount.h>.
256
257         * posixtm.c: Include <stdbool.h> unconditionally.
258
259 2003-06-05  Paul Eggert  <eggert@twinsun.com>
260
261         * mktime.c (__mktime_internal): When resolving a tm_isdst
262         mismatch, look in future quarters as well as past.  This fixes a
263         bug when processing fall-backwards gaps immediately after a long
264         period of daylight-saving time.
265
266         * mktime.c: Assume freestanding C89 or better.
267         (HAVE_LIMITS_H): Remove.  Assume it's 1.
268         (__P): Remove; not used.
269         (CHAR_BIT, INT_MIN, INT_MAX): Remove; <limits.h> defines them.
270         (mktime, not_equal_tm, print_tm, check_result,
271         main): Use prototypes.  Use const * where appropriate.
272         (main): Fix typo in testing code that uncovered by above changes.
273         (Local Variables): Remove -DHAVE_LIMITS_H from compile-command.
274
275 2003-06-04  Paul Eggert  <eggert@twinsun.com>
276
277         * mktime.c: Fix Debian bug 177940
278         <http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=177940>.
279         (localtime_offset): Now long int, not time_t, because we want it
280         to be guaranteed to be signed.  All uses changed.
281         (__mktime_internal): If overflow would occur when adding offset,
282         don't add it.
283
284         Merge 'human' changes from coreutils.  Rewrite to support
285         locale-specific notations like thousands separators.
286         * human.c: Simplify authorship notice.
287         Include human.h immediately after config.h.
288         <sys/types.h>, <stdio.h>: Do not include; no longer needed.
289         <limits.h>: Do not include, since human.h does.
290         (SIZE_MAX, UINTMAX_MAX): New macros.
291         <strings.h>: Include if HAVE_STRINGS_H, not if !HAVE_STRING_H.
292         <locale.h>: Include if HAVE_LOCALE_H and HAVE_LOCALECONV.
293         (HUMAN_READABLE_SUFFIX_LENGTH_MAX): New macro.
294         (power_letter): Renamed from suffixes.
295         (generate_suffix_backwards): Remove.
296         (adjust_value): Now takes int style (because of human.h changes)
297         and long double value (for greater precision on some platforms).
298         (group_number): New function.
299         (human_readable): Use it.  Use integer options, not enum.
300         Put the options before the sizes in the arg list.
301         Support all the new options.
302         The old human_readable function has been removed;
303         use inttostr.h instead.
304         (human_readable, default_block_size, humblock):
305         Use uintmax_t, not int, for block sizes.
306         (human_readable_inexact, block_size_types): Remove.
307         (block_size_opts): New constant.
308         (human_options): Renamed from human_block_size, with new signature
309         that allows block sizes up to UINTMAX_MAX.  All callers changed.
310         * human.h: Add copyright and authorship notice.
311         Include <limits.h> and <stdbool.h> unconditionally.
312         (PARAMS): Remove.  All uses removed.
313         (LONGEST_HUMAN_READABLE): Add support for thousands separator.
314         (enum human_inexact_style): Remove tag; now a nameless enum.
315         (human_floor, human_ceiling, human_round_to_even): Now have
316         values 2, 0, 1 rather than -1, 1, 0.
317         (human_group_digits, human_suppress_point_zero, human_autoscale,
318         human_base_1024, human_SI, human_B): New constants.
319         (human_readable_inexact, human_block_size): Remove.
320         (human_readable): Size args are now uintmax_t, not int.
321         (human_options): New decl.
322
323         * exclude.c: (new_exclude, add_exclude): Remove casts that are
324         unnecessary now that we assume C89 or better.  This change
325         imported from coreutils.
326
327         * mktime.c (__mktime_internal): Do not reject negative timestamps
328         arbitrarily.  This is the same patch as 2003-05-28, but it got lost
329         in the 2003-05-30 sync from glibc.
330
331         .h files should stand alone, but we shouldn't include <sys/types.h>
332         if we can get away with just <stddef.h>.
333
334         * __fpending.h, addext.c, backupfile.c, exclude.c, getline.c,
335         malloc.c, putenv.c, realloc.c, strcasecmp.c: Include <stddef.h>
336         rather than <sys/types.h>, as we merely need size_t.
337         * dirname.h, memcoll.h, xalloc.h, xmemcoll.h: Include <stddef.h>,
338         to get size_t.
339         * hash.h, linebuffer.h, readtokens.h, stdio-safer.h, version-etc.h:
340         Include <stdio.h>, to get FILE.
341         * memcasecmp.c: Don't include <sys/types.h>, as we can assume
342         memcasecmp.h has included <stddef.h> and all we need is size_t.
343         * memcoll.c: Include "memcoll.h", which gets us size_t and checks
344         our interface, instead of including <sys/types.h>
345
346 2003-06-02  Paul Eggert  <eggert@twinsun.com>
347
348         [from coreutils]
349         Fix some minor time-related bugs with POSIX time arguments.
350         Some valid time stamps were being rejected (notably -1, and
351         time stamps before 1900 on 64-bit hosts).  And some invalid
352         time stamps were being accepted, e.g. September 31.
353
354         * posixtm.h (posixtime): Return bool instead of time_t, so
355         that we can return (time_t) -1 successfully.
356         * posixtm.c: Likewise.
357         [HAVE_STDBOOL_H]: Include <stdbool.h>.
358         (bool, false, true) [!HAVE_STDBOOL_H]: New type.
359         (t): Remove static var.
360         (year, posix_time_parse): Now takes struct tm * arg to modify, instead
361         of static var.  All uses changed.
362         (year): Do not reject years before 1900; they can occur with
363         64-bit time_t.
364         (posix_time_parse): Do not check for out-of-range components;
365         that is now the caller's responsibility, since our checks were
366         only approximations.
367         (posixtime): Use mktime to check for out-of-range components,
368         since it knows them exactly.
369         If mktime returns (time_t) -1, check whether an error actually occurred
370         by invoking localtime on -1.
371         (main) [TEST_POSIXTIME]: Check for input data errors, and report
372         posixtime failures better.
373         Improve the test data (in comments only).
374
375 2003-05-30    <karl@gnu.org>
376
377         * mktime.c: update from libc.
378
379 2003-05-30  Bruno Haible  <bruno@clisp.org>
380
381         * config.charset: Upgrade to gettext-0.12.1 and libiconv-1.9.1.
382         * localcharset.h: Likewise.
383         * localcharset.c: Likewise.
384
385 2003-05-28  Paul Eggert  <eggert@twinsun.com>
386
387         Assume the headers required for C89 freestanding compilers.
388         * addext.c, backupfile.c, fsusage.c, human.c, pathmax.h,
389         rpmatch.c, userspec.c, xreadlink.c, xstrtol.c: Include <limits.h>
390         without checking for HAVE_LIMITS_H.
391         * backupfile.c, fsusage.c, hash.c, human.c, safe-read.c, userspec.c,
392         xstrtol.c (CHAR_BIT) : Don't define, since <limits.h> is guaranteed
393         to do that.
394         * fatal.c: Include <stdarg.h> without checking for __STDC__.
395         * exclude.c: Include <stdbool.h> unconditionally.
396         * tempname.c: Include <stddef.h> unconditionally.
397         * hash.c: Include <limits.h>, since we no longer define CHAR_BIT.
398         * modechange.c, rpmatch.c (NULL): Don't define, since
399         <stddef.h> does that.
400         * quote.c: Dont include <stddef.h> or <sys/types.h>; not needed.
401         * safe-read.c (INT_MAX): Don't define, since <limits.h> does that.
402         * safe-read.c (TYPE_MINIMUM, TYPE_MAXIMUM): Remove; no longer needed.
403         * xstrtol.c: Likewise.
404         * safe-read.c: Remove TYPE_SIGNED; no longer needed.
405         * savedir.c: Include <stddef.h> instead of defining NULL.
406
407         * addext.c (addext): Use assignment rather than cast, to avoid
408         warnings on some platforms.
409
410         * mktime.c (__mktime_internal): Do not reject negative timestamps
411         arbitrarily.
412
413 2003-05-10  Bruno Haible  <bruno@clisp.org>
414
415         * linebreak.c (iconv_string_length): Don't return -1 just because the
416         string is longer than 4 KB.
417
418 2003-05-12  Jim Meyering  <jim@meyering.net>
419
420         * strftime.c (my_strftime): Let the `-' (no-pad) flag affect
421         the space-padded-by-default conversion specifiers, %e, %k, %l.
422
423 2003-05-03  Bruno Haible  <bruno@clisp.org>
424
425         Upgrade to Unicode-4.0.
426         * linebreak.c (nonspacing_table_data): Change width of U+00AD,
427         U+0350..U+0357, U+035D..U+035F, U+0600..U+0603, U+0610..U+0615,
428         U+0656..U+0658, U+0A01, U+0AE2..U+0AE3, U+0CBC, U+17B4..U+17B5,
429         U+17DD, U+1920..U+1922, U+1927..U+192B, U+1932, U+1939..U+193B
430         from 1 to 0. Change width of U+0CBF, U+0CC6, U+180E from 0 to 1.
431         (uc_width): Change width of U+4DC0..U+4DFF from 2 to 1. Change width
432         of U+2A6D7..U+2F7FF, U+2FA1E..U+2FFFD, U+30000..U+3FFFD from 1 to 2.
433         Change width of U+E0100..U+E01EF from 1 to 0.
434
435 2003-04-25  Bruno Haible  <bruno@clisp.org>
436
437         * copy-file.c: Include <stddef.h>, for size_t.
438
439 2003-04-25  Jim Meyering  <jim@meyering.net>
440
441         * copy-file.c (copy_file_preserving): Declare buf_size to be
442         of type size_t, not int.
443
444 2003-04-11  Jim Meyering  <jim@meyering.net>
445
446         Merge changes from Coreutils.
447
448         2003-03-22  Jim Meyering  <jim@meyering.net>
449
450         * strftime.c (widen): Cast alloca return value to proper type.
451
452         2003-01-19  Ulrich Drepper  <drepper@redhat.com>
453
454         From GNU libc.
455         * strftime.c (my_strftime): Handle very large width
456         specifications for numeric values correctly.  Improve checks for
457         overflow.
458
459         2003-01-19  Jim Meyering  <jim@meyering.net>
460
461         * strftime.c (widen) [COMPILE_WIDE]: Merge nearly-identical definitions.
462         (nl_get_alt_digit) [! defined my_strftime]: Define.
463         (my_strftime) [_NL_CURRENT]: Merge nearly-identical uses of
464         _nl_get_alt_digit and _nl_get_walt_digit.
465
466         * strftime.c (my_strftime): Merge in locale-related changes from libc.
467         These changes have no effect outside of _LIBC.
468
469 2003-04-10  Bruno Haible  <bruno@clisp.org>
470
471         * findprog.h: New file, from GNU gettext.
472         * findprog.c: New file, from GNU gettext.
473
474 2003-04-05  Jim Meyering  <jim@meyering.net>
475
476         Merge changes from Coreutils.
477
478         * exclude.h (PARAMS): Remove definition and uses.
479         * exclude.c: Remove uses of `PARAMS'.
480
481         * dirname.c [TEST_DIRNAME]: Update build instructions for test.
482         Add test-cases for DOS filenames. Declare program_name.
483         (main): Set up program_name.  Patch by Rich Dawe.
484
485         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Detect any
486         error from mntctl.
487         Use mntctl's return value to drive the entry-processing loop, since
488         we can't rely on the value of the vmt_length member in the last
489         entry.  On some systems doing so could result in exhausting
490         virtual memory.  Based in part on a patch from Mike Jetzer.
491
492 2003-04-04  Bruno Haible  <bruno@clisp.org>
493
494         * linebreak.h: New file, from GNU gettext.
495         * linebreak.c: New file, from GNU gettext with slight modifications.
496         * lbrkprop.h: New file, from GNU gettext.
497
498 2003-04-03  Bruno Haible  <bruno@clisp.org>
499
500         * utf8-ucs4.h: New file, from GNU gettext.
501         * utf16-ucs4.h: New file, from GNU gettext.
502         * ucs4-utf8.h: New file, from GNU gettext.
503         * ucs4-utf16.h: New file, from GNU gettext.
504
505 2003-04-02  Bruno Haible  <bruno@clisp.org>
506
507         * binary-io.h: New file, from GNU gettext.
508
509 2003-04-01  Bruno Haible  <bruno@clisp.org>
510
511         * pathname.h: New file, from GNU gettext.
512         * concatpath.c: New file, from GNU gettext.
513
514 2003-03-30  Bruno Haible  <bruno@clisp.org>
515
516         * copy-file.c (copy_file_preserving): Don't set owner if the function
517         chown() doesn't exist.
518
519 2003-03-28  Bruno Haible  <bruno@clisp.org>
520
521         * copy-file.h: New file, from GNU gettext.
522         * copy-file.c: New file, from GNU gettext.
523
524 2003-03-18  Jim Meyering  <jim@meyering.net>
525
526         * quote.c (quote_n): Fix typo in comment.
527
528 2003-03-14  Jim Meyering  <jim@meyering.net>
529
530         Merge changes from Coreutils.
531         * obstack.h (obstack_object_size): Declare temporary, __o,
532         to be const, in order to avoid warnings.
533         (obstack_room): Likewise.
534         (obstack_empty_p): Likewise.
535
536 2003-03-13  Paul Eggert  <eggert@twinsun.com>
537
538         Merge changes from Bison.
539         * obstack.h: (__INT_TO_PTR) [__STDC__]: Cast result to
540         (void *) to avoid diagnostic with native c89 on SGI IRIX 6.5
541         when compiling Bison 1.875's `bitset bset = obstack_alloc
542         (bobstack, bytes);'.  Problem reported by Nelson H. F. Beebe.
543         * hash.c: Include <stdbool.h> unconditionally.
544
545 2003-03-09  Paul Eggert  <eggert@twinsun.com>
546
547         * argmatch.c (EXIT_FAILURE): Define if the system doesn't.
548         Reported by Bruce Becker; see:
549         http://mail.gnu.org/archive/html/bug-bison/2003-03/msg00017.html
550
551 2003-03-03  Paul Eggert  <eggert@twinsun.com>
552             Bruno Haible  <bruno@clisp.org>
553
554         * mbswidth.h: Include <wchar.h>. Needed for UnixWare 7.1.1.
555         Reported by John Hughes, see
556         http://mail.gnu.org/archive/html/bug-bison/2003-02/msg00030.html
557
558 2003-02-19  Paolo Bonzino  <bonzini@gnu.org>
559
560         * poll_.h: New file.
561         * poll.c: New file.
562
563 2003-02-18  Paolo Bonzino  <bonzini@gnu.org>
564
565         * mathl.h: New file.
566         * acosl.c: New file.
567         * asinl.c: New file.
568         * atanl.c: New file.
569         * ceill.c: New file.
570         * cosl.c: New file.
571         * expl.c: New file.
572         * floorl.c: New file.
573         * frexpl.c: New file.
574         * ldexpl.c: New file.
575         * logl.c: New file.
576         * sincosl.c: New file.
577         * sinl.c: New file.
578         * sqrtl.c: New file.
579         * tanl.c: New file.
580         * trigl.c: New file.
581         * trigl.h: New file.
582
583 2003-02-17  Bruno Haible  <bruno@clisp.org>
584
585         * mkdtemp.h: New file, from GNU gettext.
586         * mkdtemp.c: New file, from GNU gettext.
587
588 2003-01-31  Bruno Haible  <bruno@clisp.org>
589
590         * rename.c: #undef rename before defining rpl_rename.
591         * strnlen.c: #undef strnlen, define rpl_strnlen instead of strnlen.
592
593 2003-01-30  Bruno Haible  <bruno@clisp.org>
594
595         * printf-args.h: New file, from GNU gettext.
596         * printf-args.c: New file, from GNU gettext.
597         * printf-parse.h: New file, from GNU gettext.
598         * printf-parse.c: New file, from GNU gettext.
599         * vasnprintf.h: New file, from GNU gettext.
600         * vasnprintf.c: New file, from GNU gettext.
601         * asnprintf.c: New file, from GNU gettext.
602         * vasprintf.h: New file, from GNU gettext with modifications.
603         * vasprintf.c: New file, from GNU gettext.
604         * asprintf.c: New file, from GNU gettext.
605
606 2003-01-29  Bruno Haible  <bruno@clisp.org>
607
608         * stpncpy.h: New file, from GNU gettext with modifications.
609         * stpncpy.c: New file, from GNU gettext with modifications.
610
611 2003-01-28  Bruno Haible  <bruno@clisp.org>
612
613         * c-ctype.h: New file, from GNU gettext, with changes suggested by
614         Paul Eggert.
615         * c-ctype.c: New file, from GNU gettext, with changes suggested by
616         Paul Eggert.
617
618 2003-01-27  Bruno Haible  <bruno@clisp.org>
619
620         * xsetenv.h: New file, from GNU gettext.
621         * xsetenv.c: New file, from GNU gettext.
622
623 2003-01-23  Bruno Haible  <bruno@clisp.org>
624
625         * minmax.h: New file, from GNU gettext, with comments from Paul Eggert.
626
627 2003-01-22  Bruno Haible  <bruno@clisp.org>
628
629         * exit.h: New file, from GNU gettext.
630
631 2003-01-11  Bruno Haible  <bruno@clisp.org>
632
633         * stpcpy.h (stpcpy): Use ANSI C function declarations.
634         * strcase.h (strcasecmp, strncasecmp): Likewise.
635
636 2003-01-14  Jim Meyering  <jim@meyering.net>
637
638         * same.c (same_name): Tweak a comment.
639
640 2003-01-11  Bruno Haible  <bruno@clisp.org>
641
642         * same.c (same_name): Reorder tests so as to avoid calling stat()
643         when a string comparison is sufficient.
644
645 2003-01-11  Bruno Haible  <bruno@clisp.org>
646
647         * readtokens.c (readtoken): Cast character to 'unsigned char', not
648         'unsigned int'.
649
650 2003-01-11  Bruno Haible  <bruno@clisp.org>
651
652         * hash-pjw.c: Add comment about low quality of this function.
653
654 2003-01-12  Paul Eggert  <eggert@twinsun.com>
655
656         Finish renaming getstr -> getdelim2 and readline -> readlinebuffer,
657         to avoid collisions with libcurses and libreadline.
658
659         * Makefile.am (libfetish_a_SOURCES): Remove getstr.c, getstr.h.
660         * getstr.h, getstr.c: Remove.
661         * getline.c: Include "getline.h", to check interface.
662         Move body of old getstr.c here: this defines MIN_CHUNK and
663         declares getdelim2, which is renamed from getstr.
664         (getline, getdelim): Adjust to renaming of getstr -> getdelim2.
665
666         * linebuffer.c (readlinebuffer): Renamed from readline.
667         All uses changed.
668         * linebuffer.h: Likewise.
669         (readline): Remove backward-compatibility macro.
670
671 2003-01-12  Jim Meyering  <jim@meyering.net>
672
673         * makepath.c: Don't test HAVE_ERRNO_H.  It's not necessary.
674
675 2003-01-10  Bruno Haible  <bruno@clisp.org>
676
677         * alloca_.h: New file.
678         * getdate.y: Unconditionally include alloca.h.
679         * makepath.c: Likewise.
680         * setenv.c: Likewise.
681         * userspec.c: Likewise.
682
683 2003-01-09  Bruno Haible  <bruno@clisp.org>
684
685         * stdbool.h.in: New file.
686
687 2003-01-08  Bruno Haible  <bruno@clisp.org>
688
689         * safe-read.c: Include specification header first, to ensure its
690         selfcontainedness.
691         * full-write.c: Likewise.
692
693 2003-01-08  Jim Meyering  <jim@meyering.net>
694
695         * full-write.c: Undefine and define-away `const' after inclusion
696         of errno.h, not before.  Suggestion from Bruno Haible.
697
698 2003-01-07  Jim Meyering  <jim@meyering.net>
699
700         * full-write.c: Rework so that it may serve to define full_read, too.
701         * full-read.c: Simply #define FULL_READ and include full-write.c.
702
703 2003-01-06  Jim Meyering  <jim@meyering.net>
704
705         * version-etc.c: Update year in translatable copyright string.
706
707 2002-12-25  Bruno Haible  <bruno@clisp.org>
708
709         * strtoimax.c: Include <stdint.h> as an alternative to <inttypes.h>.
710         * xstrtol.h: Likewise.
711         * xstrtoimax.c: Likewise.
712         * xstrtoumax.c: Likewise.
713         * human.h: Likewise.
714
715         * tempname.c: Include <inttypes.h> too. Avoids a compilation error
716         on systems that have <inttypes.h> but not <stdint.h>.
717
718 2002-12-31  Paul Eggert  <eggert@twinsun.com>
719
720         * memcoll.c (memcoll): Fall back on a simple algorithm using
721         memcmp if strcoll doesn't work.
722
723 2002-12-23  Bruno Haible  <bruno@clisp.org>
724
725         * localcharset.h: New file.
726         * localcharset.c: Include it.
727         * unicodeio.c: Likewise.
728
729 2002-12-22  Bruno Haible  <bruno@clisp.org>
730
731         * utime.c (utime_null): No need to call ftruncate if the file was
732         nonempty.
733
734 2002-12-23  Bruno Haible  <bruno@clisp.org>
735
736         * memcoll.c (STRCOLL): New macro.
737         (memcoll): Use it.
738
739 2002-12-22  Bruno Haible  <bruno@clisp.org>
740
741         * getstr.h (getstr): Define, to avoid clash with libcurses.
742         * linebuffer.h (readline): Define, to avoid clash with libreadline.
743
744 2002-12-22  Bruno Haible  <bruno@clisp.org>
745
746         * getdate.y (get_date): Test HAVE_STRUCT_TM_TM_ZONE, not HAVE_TM_ZONE.
747
748 2002-12-23  Bruno Haible  <bruno@clisp.org>
749
750         * getline.h: Include <stddef.h>, for size_t.
751
752         * unicodeio.h: Include <stddef.h>, for size_t.
753         * unicodeio.c: Don't include <stddef.h>.
754
755 2002-12-17  Bruno Haible  <bruno@clisp.org>
756
757         * canon-host.c (strdup): Remove unused declaration.
758
759         * fsusage.c: Include full_read.h.
760         (get_fs_usage): Use full_read instead of safe_read.
761
762         * utime.c (utime_null): Use SAFE_READ_ERROR.
763
764 2002-12-11  Bruno Haible  <bruno@clisp.org>
765
766         * setenv.h: Rewritten to cope with systems that have setenv() but not
767         unsetenv().
768         * setenv.c, unsetenv.c: Taken from glibc-2.2.4 with the following
769         modifications:
770
771         2002-12-11  Bruno Haible  <bruno@clisp.org>
772
773                 * setenv.c (alloca): Fall back to malloc.
774                 (freea): New macro.
775                 (setenv): Use freea() to free memory allocated with alloca().
776
777         2002-11-13  Bruno Haible  <bruno@clisp.org>
778
779                 * setenv.c (compar_fn_t, __add_to_environ, setenv): Use ANSI C
780                 function declarations.
781                 * unsetenv.c (unsetenv): Likewise.
782
783         2002-03-04  Bruno Haible  <bruno@clisp.org>
784
785                 Portability to AIX 4.3.3.
786                 * unsetenv.c: New file, extracted from setenv.c.
787                 * setenv.c: Move the unsetenv() function to unsetenv.c.
788
789         2001-12-20  Bruno Haible  <bruno@clisp.org>
790
791                 * setenv.c (__add_to_environ): Don't call realloc(NULL,...),
792                 use malloc instead. For SunOS4.
793
794         2001-12-11  Bruno Haible  <bruno@clisp.org>
795
796                 * setenv.c: Declare alloca.
797                 (compar_fn_t): New typedef.
798                 (KNOWN_VALUE, STORE_VALUE): Use it.
799
800         * Makefile.am (libfetish_a_SOURCES): Add setenv.c, unsetenv.c,
801         setenv.h.
802
803 2002-12-10  Paul Eggert  <eggert@twinsun.com>
804
805         Port exclude.c and exclude.h to more non-GNU systems, e.g. Solaris 7.
806         * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE, EXCLUDE_WILDCARDS):
807         Choose values that are less likely to collide with system fnmatch
808         options.
809         * exclude.c (FNM_CASEFOLD, FNM_LEADING_DIR): Define to 0 if not
810         defined (e.g., a pure POSIX system).
811         (EXCLUDE_macros_do_not_collide_with_FNM_macros): Use FNM_PATHNAME
812         instead of FNM_FILE_NAME, for compatibility with pure POSIX sytems.
813
814 2002-12-06  Jim Meyering  <jim@meyering.net>
815
816         * error.c: Be consistent: change `#ifndef _LIBC' to `#if !_LIBC'.
817
818         Merge in changes from libc's misc/error.c, in preparation
819         for the merge of gnulib's changes back into libc.
820
821         * error.c (_): Define only if not already defined.
822         Move definition to follow all #include directives.
823         Include unlocked-io.h only if !_LIBC.
824         [_LIBC]: Include <libio/libioP.h>.
825         [USE_IN_LIBIO]: Include <libio/iolibio.h>
826         (fflush): Tweak definition to use INTUSE.
827         (putc): Define.
828
829 2002-12-05  Paul Eggert  <eggert@twinsun.com>
830
831         * alloca.c [defined emacs]: Include "lisp.h".
832         (xalloc_die) [defined emacs]: New macro.
833         (free) [defined emacs && defined EMACS_FREE]: Define to EMACS_FREE.
834         [! defined emacs]: Include <xalloc.h>.
835         (POINTER_TYPE) [!defined POINTER_TYPE]: New macro.
836         (pointer): Typedef to POINTER_TYPE *.
837         (malloc): Remove decl; we now always use xmalloc.
838         (alloca): Use old-style definition, since Emacs needs this.
839         Check for arithmetic overflow when computing combined size.
840
841 2002-12-04  Paul Eggert  <eggert@twinsun.com>
842
843         Do not generate unlocked-io.h automatically, since it's easier to
844         maintain it by hand.
845
846         * unlocked-io.h: New file, from GNU diffutils,
847         but with proper copyright notice and attribution.
848         * gen-uio: Remove.
849         * Makefile.am: Add copyright notice.
850         (libfetish_a_SOURCES): Add unlocked-io.h.
851         (BUILT_SOURCES, all-local): Remove unlocked-io.h.
852         (DISTCLEANFILES, io_functions): Remove macros.
853         (EXTRA_DIST): Remove gen_uio.
854         (unlocked-io.h): Remove rule.
855
856 2002-12-04  Jim Meyering  <jim@meyering.net>
857
858         Reflect the fact that stat.c and lstat.c are no longer generated.
859         * Makefile.am (BUILT_SOURCES): Remove stat.c and lstat.c.
860         (DISTCLEANFILES): Likewise.
861         (EXTRA_DIST): Likewise.
862         (all_local): Don't depend on stat.c or lstat.c.
863         (stat.c, lstat.c): Remove rules.
864         (EXTRA_DIST): Remove xstat.in.
865
866         * xstat.in: Remove file.  Contents moved into stat.c.
867         * stat.c: New file.  Contents mostly from xstat.in.
868         * stat.c: Rework so that it may serve to define rpl_lstat, too.
869         * lstat.c: New file. Simply #define LSTAT and include stat.c.
870
871         * safe-read.c: Rework so that it may serve to define safe_write, too.
872         * safe-write.c: Simply #define SAFE_WRITE and include safe-read.c.
873
874 2002-12-03  Jim Meyering  <jim@meyering.net>
875
876         * safe-read.c, safe-write.c: Change variable names and comments, but
877         not semantics, to minimize the differences between these two files.
878         (safe_read): Change comment to mention SAFE_READ_ERROR.
879
880         * safe-read.c (IS_EINTR): Define.
881         (safe_read): Use IS_EINTR in place of in-function cpp directives.
882
883 2002-12-02  Bruno Haible  <bruno@clisp.org>
884
885         * safe-write.c (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM):
886         Define, taken from safe-read.c.
887         (INT_MAX): Provide fallback.
888         (safe_write): Rewrite to iterate IFF the write fails with EINTR.
889         * safe-write.h (SAFE_WRITE_ERROR): Define.
890
891         * safe-read.c (EINTR): Remove definition.
892         (safe_read): Don't use EINTR if it is absent.
893
894 2002-12-02  Jim Meyering  <jim@meyering.net>
895
896         * safe-read.c (EINTR): Define.
897         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
898         (INT_MAX): Provide fallback.
899         (safe_read): Rewrite to iterate IFF the read fails with EINTR.
900
901         * safe-read.h (SAFE_READ_ERROR): Define.
902
903 2002-12-01  Jim Meyering  <jim@meyering.net>
904
905         * safe-read.c: (safe_read): Also exit the loop when read returns zero.
906         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM, INT_MAX): Define.
907
908 2002-11-27  Paul Eggert  <eggert@twinsun.com>
909
910         * hash.c (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
911         hash_rehash): Replace `if (limit <= value) abort ();' with
912         `if (! (value < limit)) abort ();', for readability.
913
914 2002-11-26    <karl@gnu.org>
915
916         * strdup.c: copy from libc again, with jim's ok.
917         * .cppi-disable: re-add strdup.c
918
919 2002-11-25    <karl@gnu.org>
920
921         * strtoll.c: copy from libc, meaning we now #include <strtol.c>
922         instead of "strtol.c".
923
924 2002-11-25  Jim Meyering  <jim@meyering.net>
925
926         * mktime.c: Sync from libc, now that it has the latest fix.
927
928 2002-11-24    <karl@gnu.org>
929
930         * error.c, getopt.c, getopt.h, getopt1.c, obstack.c, regex.c,
931         regex.h, strdup.c, strtoll.c, tempname.c: change license to gpl.
932
933 2002-11-24  Jim Meyering  <jim@meyering.net>
934
935         Update from coreutils:
936
937         * mktime.c: Merge in changes from libc.
938
939         Avoid a link-time failure on some Linux systems.
940         * mktime.c (STATIC): Define to be empty (_LIBC) or `static' (otherwise).
941         (__mon_yday): Declare with the STATIC attribute.
942         (__mktime_internal): Likewise.
943         Based on a report from Greg Schafer.
944
945 2002-11-23  Jim Meyering  <jim@meyering.net>
946
947         * sig2str.c (str2signum, sig2str): Avoid a warning from gcc:
948         Use `unsigned', not `int', as type of index.
949
950         * xstat.in [@BEGIN_LSTAT_ONLY@]: Include <string.h>.
951
952         * fsusage.c: Remove unneeded parentheses around operands of `defined'.
953
954 2002-11-22  Paul Eggert  <eggert@twinsun.com>
955
956         * hash.c: Avoid use of <assert.h>, as the GNU Coding Standards
957         hint that one should use `if (! x) abort ();' rather than `assert
958         (x);', and anyway it's one less thing to worry about configuring.
959         (hash_lookup, hash_get_first, hash_get_next, hash_find_entry,
960         hash_rehash, hash_insert): Use abort rather than assert.
961
962 2002-11-22  Paul Eggert  <eggert@twinsun.com>
963
964         * quotearg.h: Allow multiple inclusion by surrounding with
965         "#ifndef QUOTEARG_H_".  Include <stddef.h>, for size_t,
966         so that we can be included first.
967         (PARAMS): Remove; we now assume C89 or later.  All uses removed.
968         * quotearg.c: Include quotearg.h immediately after config.h.
969         No need to include stddef.h or sys/types.h any more.
970         Surround local include files with "", not "<>".
971         Assume HAVE_LIMITS_H unconditionally, as we assume C89.
972         Similarly, assume HAVE_C_BACKSLASH_A, CHAR_BIT, UCHAR_MAX, UINT_MAX,
973         HAVE_STDLIB_H, HAVE_STRING_H, STDC_HEADERS.
974         (HAVE_MBSINIT): Undef if !HAVE_MBRTOWC.
975         (mbsinit): Define to 1 if !defined mbsinit && !HAVE_MBSINIT.
976         (ISPRINT): Remove; no longer needed now that we assume C89.
977
978         (clone_quoting_options, quotearg_buffer, quotearg_n_options):
979         Preserve errno.
980
981         (quotearg_buffer_restyled, quotearg_n, quotearg_n_style,
982         quotearg_char): Use SIZE_MAX rather than
983         (size_t) -1 when we are talking about "infinity".
984
985         (quotearg_buffer_restyled): Fix bug when quoting trigraphs.
986
987 2002-11-22  Bruno Haible  <bruno@clisp.org>
988
989         * safe-read.h: Assume C89. Add comments.
990         (safe_read): Change return type to size_t.
991         * safe-read.c (safe_read): Change return type to size_t. Handle byte
992         counts > SSIZE_MAX correctly.
993         * safe-write.h: New file.
994         * safe-write.c: New file.
995         * full-read.h: New file.
996         * full-read.c: New file.
997         * full-write.h: Assume C89. Add comments.
998         * full-write.c: Include safe-write.h.
999         (full_write): Rewritten to use safe_write.
1000         Suggested by Jim Meyering and Paul Eggert.
1001
1002 2002-11-21  Bruno Haible  <bruno@clisp.org>
1003
1004         Remove case insensitive option matching.
1005         * argmatch.h (argcasematch): Remove declaration.
1006         (ARGCASEMATCH): Remove macro.
1007         (__xargmatch_internal): Remove case_sensitive argument.
1008         (XARGMATCH): Update.
1009         (XARGCASEMATCH): Remove macro.
1010         * argmatch.c (argmatch): Renamed from __argmatch_internal. Remove
1011         case_sensitive argument.
1012         (argcasematch): Remove function.
1013         (__xargmatch_internal): Remove case_sensitive argument.
1014         (main): Use XARGMATCH instead of XARGCASEMATCH.
1015
1016         * xmalloc.c: Change compile-time error message. Add comment about
1017         required autoconf version.
1018
1019 2002-11-21  Jim Meyering  <jim@meyering.net>
1020
1021         * strdup.c (strdup): Tweak comment and initial #if/#include.
1022
1023         Merge in changes from the coreutils.
1024
1025         2002-09-25  Paul Eggert  <eggert@twinsun.com>
1026         * fsusage.c [! HAVE_INTTYPES_H && HAVE_STDINT_H] Include <stdint.h>.
1027         (UINTMAX_MAX) [!defined UINTMAX_MAX]: New macro.
1028         (PROPAGATE_ALL_ONES): Work even if X is unsigned and narrower than
1029         int.  Work more efficiently if X is the same width as uintmax_t.
1030         Do not compare X to -1, to avoid bogus compiler warning.
1031         (get_fs_usage): (uintmax_t) -1 -> UINTMAX_MAX to avoid a cast.
1032         Don't assume that f_frsize and f_bsize are the same type.
1033
1034         * mountlist.c: #undef MNT_IGNORE before defining it, to avoid warning
1035         on FreeBSD.
1036
1037         * makepath.c (make_path): Restore umask *before* creating the final
1038         component.
1039         (make_path): Minor reformatting.
1040
1041         * xmalloc.c: Adjust to work with new autoconf macros, AC_FUNC_MALLOC
1042         and AC_FUNC_REALLOC: test #ifndef HAVE_MALLOC/HAVE_REALLOC.
1043
1044         * mountlist.h (ME_DUMMY): Don't count entries of type `auto' as dummy
1045         ones.  At least on GNU/Linux systems, `auto' means something else.
1046         From Michael Stone.
1047
1048 2002-11-20  Paul Eggert  <eggert@twinsun.com>
1049
1050         Merge argmatch cleanups from Bison.  Assume C89.
1051
1052         * argmatch.c: Include config.h here, not in argmatch.h.
1053         Include stdlib.h, for EXIT_FAILURE.
1054         Always include <string.h>, since we assume C89.
1055         (EXIT_FAILURE): Remove pre-C89 bug workaround.
1056         * argmatch.h: Do not include <config.h> or <sys/types.h>.
1057         Include <stddef.h> instead, since it's all we need for size_t.
1058         (PARAMS): Remove.  All uses removed.
1059         (ARRAY_CARDINALITY): Do not bother to #undef.
1060         (ARRAY_CARDINALITY, ARGMATCH, ARGCASEMATCH, invalid_arg,
1061         ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
1062         Remove unnecessary parentheses.
1063         (ARGMATCH_VALID, XARGMATCH, XARGCASEMATCH):
1064         Insert necessary parentheses.
1065         (ARGMATCH_CONSTRAINT, ARGMATCH_VERIFY): New macros.
1066         (ARGMATCH_ASSERT): Use ARGMATCH_CONSTRAINT.
1067
1068 2002-11-19  Bruno Haible  <bruno@clisp.org>
1069
1070         * mbswidth.c: Include mbswidth.h right at the beginning.
1071         * mbswidth.h: Include <stddef.h>, for size_t.
1072
1073         * mbswidth.h (PARAMS): Remove macro.
1074         (mbswidth, mbsnwidth): Use ANSI C function declarations.
1075         * mbswidth.c (mbswidth, mbsnwidth): Likewise.
1076
1077         * gcd.h (PARAMS): Remove macro.
1078         (gcd): Use ANSI C function declarations.
1079         * gcd.c (gcd): Likewise.
1080
1081 2002-11-15  Bruno Haible  <bruno@clisp.org>
1082
1083         * strcspn.c: Include <stddef.h>.
1084         (strcspn): Use ANSI C function declaration. Change return type to
1085         size_t. Use NULL.
1086         * strpbrk.c: Minimize diffs to glibc. Include <stddef.h>.
1087         (strpbrk): Use NULL.
1088         * strpbrk.h (PARAMS): Remove macro.
1089         (strpbrk): Use ANSI C function declaration.
1090         * strstr.c: Don't include <sys/types.h>.
1091         * strstr.h (PARAMS): Remove macro.
1092         (strstr): Use ANSI C function declarations.
1093
1094 2002-11-06  Bruno Haible  <bruno@clisp.org>
1095
1096         * gcd.h (gcd): Change argument type to 'unsigned long'.
1097         * gcd.c (gcd): Likewise.
1098
1099 2002-11-05  Bruno Haible  <bruno@clisp.org>
1100
1101         * gcd.h: New file, from gettext-0.11.5.
1102         * gcd.c: New file, from gettext-0.11.5.
1103
1104 2002-11-05  Bruno Haible  <bruno@clisp.org>
1105
1106         * error.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
1107         * getopt.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
1108         * obstack.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
1109         * regex.c [!_LIBC]: Include gettext.h instead of <libintl.h>.
1110
1111         * argmatch.c: Include gettext.h instead of <locale.h> and <libintl.h>.
1112         * makepath.c: Include gettext.h instead of <locale.h> and <libintl.h>.
1113
1114         * closeout.c: Include gettext.h instead of <libintl.h>.
1115         * human.c: Include gettext.h instead of <libintl.h>.
1116         * quotearg.c: Include gettext.h instead of <libintl.h>.
1117         * rpmatch.c: Include gettext.h instead of <libintl.h>.
1118         * unicodeio.c: Include gettext.h instead of <libintl.h>.
1119         * userspec.c: Include gettext.h instead of <libintl.h>.
1120         * version-etc.c: Include gettext.h instead of <libintl.h>.
1121         * xmalloc.c: Include gettext.h instead of <libintl.h>.
1122         (textdomain): Remove definition.
1123         * xmemcoll.c: Include gettext.h instead of <libintl.h>.
1124
1125         * long-options.c: Remove include of <libintl.h> and definition of _.
1126         * same.c: Remove include of <libintl.h> and definition of _.
1127
1128 2002-11-04  Bruno Haible  <bruno@clisp.org>
1129
1130         * stpcpy.h: New file, from GNU gettext-0.11.5.
1131         * strcase.h: New file, from GNU gettext-0.11.5.
1132         * strpbrk.h: New file, from GNU gettext-0.11.5.
1133         * strstr.h: New file, from GNU gettext-0.11.5.
1134         * xgetcwd.h: New file, from GNU gettext-0.11.5.
1135
1136 2002-05-09  Bruno Haible  <bruno@clisp.org>
1137
1138         * config.charset: Update for newest glibc. Add canonical names
1139         ISO-8859-14, KOI8-T, TCVN5712-1, GEORGIAN-PS.
1140
1141 2002-05-09  Bruno Haible  <bruno@clisp.org>
1142
1143         * localcharset.c (get_charset_aliases): Add more Windows specific
1144         aliases.
1145
1146 2002-05-08  Owen Taylor  <otaylor@redhat.com>
1147
1148         * config.charset: A few additions for Solaris.
1149
1150 2001-12-05  Bruno Haible  <bruno@clisp.org>
1151
1152         * localcharset.c (locale_charset): Don't return an empty string.
1153
1154 2001-10-23  Bruno Haible  <haible@clisp.cons.org>
1155
1156         * config.charset: msdos in uk_UA uses CP1125.
1157
1158 2001-08-05  Bruno Haible  <haible@clisp.cons.org>
1159
1160         Make it possible to build libcharset with CC=gcc CFLAGS="-x c++".
1161         * localcharset.c (locale_charset): Declare as extern "C".
1162
1163 2002-02-15  Bruno Haible  <bruno@clisp.org>
1164
1165         * config.charset [msdosdjgpp]: For Russian, use CP866.
1166
1167 2002-02-11  Bruno Haible  <bruno@clisp.org>
1168
1169         * config.charset: Add support for NetBSD.
1170
1171 2002-09-25    <karl@gnu.org>
1172
1173         * strdup.c: copy from libc/string (via ../config/srclist*).
1174         * getopt*: copy from libc/posix.
1175         * gettext.h: copy from gettext.
1176         * .cppi-disable: add strdup.c, gettext.h.
1177
1178 2002-07-01  Jim Meyering  <meyering@lucent.com>
1179
1180         * c-stack.c: Include sys/time.h.
1181         From Volker Borchert.
1182
1183 2002-06-11  Paul Eggert  <eggert@twinsun.com>
1184
1185         * fnmatch.c, fnmatch_loop.c (WIDE_CHAR_SUPPORT):
1186         New macro.  Use it uniformly instead of
1187         (defined HAVE_WCTYPE_H && defined HAVE_WCHAR_H).
1188         It also uses HAVE_BTOWC, to fix a porting bug on Solaris 2.5.1
1189         reported by Vin Shelton.
1190
1191 2002-06-22  Jim Meyering  <meyering@lucent.com>
1192
1193         * fnmatch.c (ISASCII, ISPRINT): Undefine, to avoid warning about
1194         redefinition due to Solaris5.6's definition in /usr/include/sys/euc.h.
1195
1196 2002-06-22  Paul Eggert  <eggert@twinsun.com>
1197
1198         * c-stack.h (segv_handler, c_stack_action) [! defined SA_SIGINFO]:
1199         Do not assume SA_SIGINFO behavior.
1200         Bug reported by Jim Meyering on NetBSD 1.5.2.
1201
1202 2002-06-22  Jim Meyering  <meyering@lucent.com>
1203
1204         * c-stack.c, c-stack.h: New files, from diffutils-2.8.2.
1205
1206         * exitfail.c, exitfail.h: Likewise.
1207         * Makefile.am (libfetish_a_SOURCES): Add exitfail.c and exitfail.h.
1208
1209         * Makefile.am (libfetish_a_SOURCES): Add fnmatch_.h in place
1210         of fnmatch.h.
1211         (EXTRA_DIST): Add fnmatch_loop.c.
1212         (libfetish_a_SOURCES): Add c-stack.c and c-stack.h.
1213
1214         * fnmatch_loop.c: New file, from diffutils-2.8.2.
1215         * fnmatch.c: Update from diffutils-2.8.2.
1216         * fnmatch_.h: New file.  From diffutils-2.8.2.
1217         * fnmatch.h: Remove file.
1218
1219 2002-06-18  Paul Eggert  <eggert@twinsun.com>
1220
1221         * file-type.h: Report an error if neither S_ISREG nor
1222         S_IFREG is defined, instead of using a test specific to glibc
1223         2.2.  This should be safe, since POSIX requires S_ISREG and
1224         Unix Version 7 had S_IFREG.  We don't need to check for
1225         <sys/types.h> since we don't use any symbols that it defines.
1226
1227 2002-06-15  Jim Meyering  <meyering@lucent.com>
1228
1229         * file-type.h (FILE_TYPE_H): Guard entire contents with #ifndef.
1230         For GNU libc 2.2 and newer, ensure that <sys/types.h> and <sys/stat.h>
1231         have been included before this file.
1232
1233 2002-06-13  Richard Dawe  <richdawe@bigfoot.com>
1234
1235         * Makefile.am (lstat.c, stat.c, .sin.sed): Use t-$@, rather than $@-t,
1236         so that each temporary file name is unique and valid in the first
1237         8 characters, for operation under DOS.
1238
1239 2002-06-15  Jim Meyering  <meyering@lucent.com>
1240
1241         Work even with DJGPP 2.03, which lacks support for symlinks.
1242         From Richard Dawe.
1243         * xstat.in (S_ISLNK): Define to 0 if neither S_ISLNK nor S_IFLNK
1244         is defined.
1245         * lchown.c (S_ISLNK): Likewise.
1246
1247 2002-06-14  Jim Meyering  <meyering@lucent.com>
1248
1249         * file-type.h: Use the version from diffutils-2.8.2.
1250         * file-type.c: Likewise.
1251
1252 2002-05-27  Jim Meyering  <meyering@lucent.com>
1253
1254         Fix a problem seen only on nonconforming systems whereby ls.c's
1255         use of localtime, and then of gettimeofday would cause trouble:
1256         the localtime call used to initialize rpl_gettimeofday's save
1257         mechanism would clobber ls's current local time information so
1258         that in any long listing the first file would always be listed
1259         with date 1970-01-01.  Analysis by Volker Borchert.
1260
1261         * gettimeofday.c (localtime): Undefine.
1262         (rpl_localtime): New function.
1263
1264 2002-05-22  Jim Meyering  <meyering@lucent.com>
1265
1266         * Makefile.am (libfetish_a_SOURCES): Add file-type.c and file-type.h.
1267         * file-type.h: New file.
1268         * file-type.c (file_type): New file/function.  Extracted from diffutils.
1269
1270 2002-04-29  Paul Eggert  <eggert@twinsun.com>
1271
1272         * hard-locale.c: Upgrade to version used in GNU Diffutils 2.8.1.
1273
1274 2002-04-28  Paul Eggert  <eggert@twinsun.com>
1275
1276         * sig2str.h (SIGNUM_BOUND): Do not use WTERMSIG, to avoid
1277         depending on <sys/wait.h> and WTERMSIG.  Default to 64 instead
1278         of 127, since 64 is the largest conceivable number for ancient
1279         nonstandard hosts.
1280         * sig2str.c: Do not include <sys/wait.h>; no longer needed.
1281
1282 2002-04-28  Jim Meyering  <meyering@lucent.com>
1283
1284         * sig2str.c (WTERMSIG): Remove definition (unused).
1285
1286 2002-04-28  Paul Eggert  <eggert@twinsun.com>
1287
1288         * sig2str.h, sig2str.c: New files.
1289         * Makefile.am (libfetish_a_SOURCES): Add sig2str.h.
1290
1291 2002-04-24  Jim Meyering  <meyering@lucent.com>
1292
1293         * gettext.h: New file, from Gettext.
1294         * Makefile.am (INCLUDES): Remove -I../intl.
1295         (libfetish_a_SOURCES): Add gettext.h.
1296
1297 2002-04-16  Jim Meyering  <meyering@lucent.com>
1298
1299         * readutmp.h (UT_TYPE): Remove definition (now in who.c).
1300         (HAVE_STRUCT_XTMP_UT_EXIT, HAVE_STRUCT_XTMP_UT_ID): Define.
1301         (HAVE_STRUCT_XTMP_UT_PID, HAVE_STRUCT_XTMP_UT_TYPE): Define.
1302
1303 2002-04-12  Jim Meyering  <meyering@lucent.com>
1304
1305         * dirfd.h (dirfd): Elide prototype if dirfd is a macro.
1306
1307 2002-03-10  Jim Meyering  <meyering@lucent.com>
1308
1309         * makepath.c (make_path): Remove a comma from a diagnostic.
1310         Suggestion from Santiago Vila.
1311
1312 2002-03-08  Jim Meyering  <meyering@lucent.com>
1313
1314         * rename.c: Mention that this wrapper is needed also on
1315         mips-dec-ultrix4.4 systems.
1316
1317 2002-03-02  Jim Meyering  <meyering@lucent.com>
1318
1319         * gettime.c (gettime): Test HAVE_CLOCK_GETTIME,
1320         not HAVE_CLOCK_SETTIME.
1321
1322 2002-02-27  Paul Eggert  <eggert@twinsun.com>
1323
1324         * nanosleep.h: Rename to....
1325         * timespec.h: New name for nanosleep.h.  All uses changed.
1326
1327         * gettime.c: New file.
1328         * settime.c: New file.
1329         * stime.c: Remove.
1330
1331         * Makefile.am (libfetish_a_SOURCES): Add gettime.c, settime.c,
1332         timespec.h.  Remove nanosleep.h.
1333
1334 2002-02-25  Paul Eggert  <eggert@twinsun.com>
1335
1336         * acl.c, acl.h: New files.
1337         * Makefile.am (libfetish_a_SOURCES): Add acl.h, acl.c.
1338
1339 2002-02-24  Jim Meyering  <meyering@lucent.com>
1340
1341         * strnlen.c (strnlen): Define-away/undef so that an inconsistent
1342         prototype in string.h (on at least AIX4.3.2.0 w/gcc-2.95.3) doesn't
1343         cause trouble.  Reported by Nelson Beebe.
1344
1345 2002-02-23  Paul Eggert  <eggert@twinsun.com>
1346
1347         * path-concat.c (xpath_concat): Reorder code to pacify
1348         compilers that don't know that xalloc_die never returns.
1349
1350 2002-02-20  Jim Meyering  <meyering@lucent.com>
1351
1352         * getdate.c: Regenerate using bison-1.33.
1353
1354 2002-02-15  Paul Eggert  <eggert@twinsun.com>
1355
1356         * posixver.c, posixver.h: New files.
1357         * Makefile.am (libfetish_a_SOURCES): Add them.
1358
1359 2002-02-02  Paul Eggert  <eggert@twinsun.com>
1360             Bruno Haible  <bruno@clisp.org>
1361
1362         * unicodeio.h (print_unicode_char): Add exit_on_error argument.
1363         (fwrite_success_callback): New declaration.
1364         * unicodeio.c (unicode_to_mb): New function, extracted from
1365         print_unicode_char. Call failure callback instead of error.
1366         (fwrite_success_callback): New function.
1367         (exit_failure_callback): New function.
1368         (fallback_failure_callback): New function.
1369         (print_unicode_char): Call unicode_to_mb.
1370
1371 2002-01-26  Jim Meyering  <meyering@lucent.com>
1372
1373         * Makefile.am (getdate$U.o): Depend on unlocked-io.h.
1374
1375 2002-01-22  Jim Meyering  <meyering@lucent.com>
1376
1377         * Makefile.am (Makefile): Don't depend on $(BUILT_SOURCES).
1378         Otherwise, some versions of automake would omit the rule that makes
1379         Makefile from Makefile.in.
1380
1381 2001-01-21  Paul Eggert  <eggert@twinsun.com>
1382
1383         * xmemcoll.h, xmemcoll.c: New files.
1384         * Makefile.am (libfetish_a_SOURCES): Add them.
1385         * memcoll.c: Include errno.h, and declare errno if not defined.
1386         (memcoll): Set errno to zero if there is no error.
1387
1388         * quotearg.c (quotearg_buffer_restyled):
1389         Fix bug with quoting buffers containing NUL when backslashing escapes.
1390         This bug was exposed by the other changes in this patch.
1391         (quotearg_n_options): New arg ARGSIZE.
1392         All callers changed.
1393         (quoting_options_from_style): New function.
1394         (quotearg_n_style): Use it.
1395         (quotearg_n_style_mem): New function.
1396
1397         * quotearg.h (quotearg_n_style_mem): New function.
1398
1399 2002-01-16  Jim Meyering  <meyering@lucent.com>
1400
1401         * getdate.y: Add three semicolons, each just before a closing brace.
1402         Bison (as of version 1.31) no longer papers over that mistake.
1403
1404 2002-02-14  Paul Eggert  <eggert@twinsun.com>
1405
1406         * backupfile.c (ISDIGIT): Comment fix.
1407         * getdate.y (ISDIGIT): Likewise.
1408         * posixtm.c (ISDIGIT, year): Likewise.
1409         * strverscmp.c (ISDIGIT): Likewise.
1410         * userspec.c (ISDIGIT): Likewise.
1411
1412 2002-01-05  Jim Meyering  <meyering@lucent.com>
1413
1414         * version-etc.c (version_etc_copyright): Update copyright year.
1415
1416 2001-01-19  Paul Eggert  <eggert@twinsun.com>
1417
1418         * closeout.c (close_stdout_status): If ferror (stdout), do
1419         not silently exit merely because the output buffer happens to
1420         have nothing pending.
1421
1422 2001-12-18  Paul Eggert  <eggert@twinsun.com>
1423
1424         See the big note in ../ChangeLog.
1425         * human.c (suffixes): Prefer K to k for 1024.
1426         (generate_suffix_backwards): New function.
1427         (human_readable_inexact): Use it.
1428         * xstrtol.c (__xstrtol): If there is no number but there
1429         is a valid suffix, assume 1.  "MB" now means decimal, "MiB" binary.
1430         Accept 'K' as well as 'k'.
1431
1432 2001-12-15  Jim Meyering  <meyering@lucent.com>
1433
1434         * regex.h (__restrict_arr): Update from libc.
1435
1436         * mountlist.h (ME_REMOTE): Recognize file systems of type smbfs
1437         as `remote' if the name starts with `//'.  Suggested by Michael Stone.
1438         (STREQ): Define.
1439
1440 2001-12-10  Jim Meyering  <meyering@lucent.com>
1441
1442         * linebuffer.c: Remove explicit declarations of xmalloc and xrealloc,
1443         Instead, include "xalloc.h".
1444         (initbuffer): Don't cast xmalloc return value to char*.
1445         (readline): Reword comment.
1446         Don't cast xrealloc return value to char*
1447         Return NULL, not 0.
1448
1449 2001-12-09  Jim Meyering  <meyering@lucent.com>
1450
1451         * modechange.c (mode_compile): Add cast to avoid pedantic warning about
1452         `signed and unsigned type in conditional expression'.
1453         * posixtm.c (posix_time_parse): Likewise.
1454
1455         * xreadlink.c (xreadlink): Add cast to avoid a pedantic warning.
1456
1457         * readtokens.c (readtoken): Declare an index to be of type unsigned
1458         to avoid a pedantic warning.
1459
1460         * getstr.c: Don't include assert.h.
1461         (getstr): Remove warning-evoking assertions.
1462         Return -1 if offset parameter is out of bounds.
1463         Change the type of a local from int to size_t.
1464
1465         * strftime.c (my_strftime_localtime_r): Include this function
1466         definition in the `#if ! HAVE_TM_GMTOFF' block.
1467
1468         * xgethostname.c: Remove declarations of xmalloc and xrealloc.
1469         Include xalloc.h instead.
1470
1471 2001-12-02  Jim Meyering  <meyering@lucent.com>
1472
1473         * tempname.c: Don't declare getenv, thus reverting the change of
1474         2001-11-18.  It's no longer necessary, now that stdlib.h is always
1475         included.
1476
1477         * regex.c [!__BOUNDED_POINTERS__]: Define away __bounded,
1478         __unbounded, and __ptrvalue.  Reported by Uwe H. Steinfeld.
1479
1480 2001-11-30  Akim Demaille  <akim@epita.fr>
1481
1482         * xstrdup.c: Include xalloc.h, so that xstrdup is declared
1483         before being defined.
1484
1485 2001-11-27  Paul Eggert  <eggert@twinsun.com>
1486
1487         * quotearg.h (quotearg_n, quotearg_n_style):
1488         First arg is int, not unsigned.
1489         * quotearg.c (quotearg_n, quotearg_n_style): Likewise.
1490         (SIZE_MAX, UINT_MAX): New macros.
1491         (quotearg_n_options): Abort if N is negative.
1492         Avoid overflow check on hosts where size_t is 64 bits and int
1493         is 32 bits, as overflow is impossible there.
1494         Fix off-by-one typo that caused unnecessary reallocation.
1495
1496 2001-11-27  Jim Meyering  <meyering@lucent.com>
1497
1498         * tempname.c: Merge with version from libc.
1499         * regex.c: Likewise.
1500
1501         * tempname.c: Include stdlib.h unconditionally.  On some old systems
1502         for which STDC_HEADERS is 0, it was not included, resulting in a
1503         warning about an integer-to-pointer conversion problem with getenv.
1504         Reported by Volker Borchert.
1505
1506 2001-11-26  Jim Meyering  <meyering@lucent.com>
1507
1508         * gtod.h: Remove file.
1509         * Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
1510         * gettimeofday.c: Don't include gtod.h.
1511         (GTOD_init): Remove function.
1512         (rpl_gettimeofday): Do its job here instead, rather than aborting.
1513         Suggestion from Volker Borchert.
1514
1515 2001-11-23  Jim Meyering  <meyering@lucent.com>
1516
1517         * hash.h (struct hash_table): Don't define here.  Merely declare it.
1518         * hash.c (struct hash_table): Define it here instead.
1519
1520 2001-11-22  Jim Meyering  <meyering@lucent.com>
1521
1522         * hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
1523
1524 2001-11-18  Paul Eggert  <eggert@twinsun.com>
1525
1526         * tempname.c (TMP_MAX): Remove; no longer needed.
1527         (TEMPORARIES): New macro.
1528         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
1529         removes an artificial limitation (e.g. HP-UX 10.20, where
1530         TMP_MAX is 17576).
1531
1532 2001-11-18  Jim Meyering  <meyering@lucent.com>
1533
1534         * tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
1535         on SunOS4.
1536
1537         * Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
1538         files will be created before anything else.
1539
1540 2001-11-17  Jim Meyering  <meyering@lucent.com>
1541
1542         * modechange.c (mode_adjust): Fix error introduced on 1999-04-26
1543         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
1544         rather than group writable.  Patch by Juan F. Codagnone.
1545
1546         * readtokens.c: Remove explicit declarations of xmalloc and xrealloc,
1547         Instead, include "xalloc.h".
1548
1549         * mountlist.c: Include unlocked-io.h after all system headers.
1550         Remove explicit declarations of xmalloc, xrealloc,
1551         and xstrdup.  Instead, include "xalloc.h".
1552
1553         * argmatch.c, closeout.c, error.c, exclude.c: Include unlocked-io.h.
1554         * fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c: Likewise.
1555         * mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
1556
1557         * regex.c, sha.c, version-etc.c, yesno.c: Likewise.
1558         Reported by Padraig Brady.
1559
1560         * mkstemp.c: #undef mkstemp.
1561         Include config.h.
1562         (rpl_mkstemp): Rename from mkstemp.
1563         Protoize.
1564
1565 2001-11-16  Jim Meyering  <meyering@lucent.com>
1566
1567         * physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
1568         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
1569         determine the amount of total physical memory, use pstat_getstatic.
1570         HPUX-11 doesn't define _SC_PHYS_PAGES.
1571         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
1572         If sysconf couldn't be used to determine the amount of available
1573         physical memory, use both pstat_getstatic and pstat_getdynamic.
1574         Based on a patch from Bob Proulx.
1575
1576 2001-11-05  Jim Meyering  <meyering@lucent.com>
1577
1578         * xstat.in (slash_aware_lstat): Correct a misleading comment.
1579
1580 2001-11-03  Jim Meyering  <meyering@lucent.com>
1581
1582         * argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
1583         in argmatch_to_argument call.
1584
1585         * dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
1586         argument.
1587
1588         * hash.c (hash_clear): Fix a bug that could lead to an infloop or
1589         e.g., a fault due to an attempt to free a NULL pointer.
1590
1591 2001-11-01  Jim Meyering  <meyering@lucent.com>
1592
1593         * dirfd.c, dirfd.h: New files.
1594         * Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
1595
1596         * hash.c (hash_print) [TESTING]: Clean up.
1597
1598 2001-10-22  Paul Eggert  <eggert@twinsun.com>
1599
1600         * hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
1601         to avoid a warning if -Wall.
1602
1603 2001-10-21  Paul Eggert  <eggert@twinsun.com>
1604
1605         * regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
1606
1607 2001-10-21  Jim Meyering  <meyering@lucent.com>
1608
1609         * obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
1610         this code would end up calling gettext even in packages built
1611         with --disable-nls.
1612         * getopt.c (_): Likewise.
1613         * regex.c (_): Likewise.
1614
1615 2001-10-20  Paul Eggert  <eggert@twinsun.com>
1616
1617         * error.c (strerror_r): Do not declare unless !_LIBC.
1618         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
1619         Use strerror_r that is only a macro, even if it is not a function.
1620         (strerror): Check for HAVE_DECL_STRERROR before declaring.
1621         (private_strerror): Use prototypes, not old-style function definition.
1622         (print_errno_message): New function.
1623         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
1624         char*-flavored one.
1625         (error_tail, error, error_at_line): Use it.
1626
1627 2001-10-11  Jim Meyering  <meyering@lucent.com>
1628
1629         * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
1630         and quote_n (1, ... to avoid clobbering a buffer.
1631
1632 2001-10-05  Jim Meyering  <meyering@lucent.com>
1633
1634         * Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and hash-pjw.h.
1635         * hash-pjw.c: New file (factored out of fileutils' remove.c).
1636         * hash-pjw.h: New file.
1637
1638 2001-09-30  Jim Meyering  <meyering@lucent.com>
1639
1640         * mountlist.c [MOUNTED_GETFSSTAT]:
1641         Include <sys/ucred.h>, for Apple Darwin.
1642         Include sys/mount.h and sys/fs_types.h only if available.
1643         (FS_TYPE): Define.
1644         (read_filesystem_list): Use FS_TYPE.
1645
1646 2001-09-29  Paul Eggert  <eggert@twinsun.com>
1647
1648         * exclude.c (excluded_filename): 0 -> false, since it's
1649         a boolean context.
1650
1651 2001-09-28  Paul Eggert  <eggert@twinsun.com>
1652
1653         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
1654         #defines strtoimax.  Also treat the other strto* functions
1655         like strtoimax.
1656
1657         * xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
1658         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
1659         (strtoimax, strtoumax): Do not declare if already defined as a macro.
1660
1661 2001-09-26  Jim Meyering  <meyering@lucent.com>
1662
1663         Most macros in unlocked-io.h had the wrong number of arguments.
1664         * gen-uio: New script.
1665         (USE_UNLOCKED_IO): Define to 1 if not already defined.
1666         * unlocked-io.hin: Remove file.
1667         * Makefile.am (unlocked-io.h): Rewrite to use a separate script,
1668         rather than trying to embed it here.
1669         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
1670         Reported by Padraig Brady.
1671
1672 2001-09-25  Volker Borchert  <bt@teknon.de>
1673
1674         * gettimeofday.c (rpl_gettimeofday): Declare local variable `result'.
1675
1676 2001-09-23  Jim Meyering  <meyering@lucent.com>
1677
1678         * mountlist.c: Remove useless parentheses in #if directives.
1679         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
1680         the deprecated MOUNTED symbol is no longer defined in mntent.h.
1681
1682 2001-09-22  Jim Meyering  <meyering@lucent.com>
1683
1684         * localcharset.c: Update from latest gettext.
1685         * config.charset: Likewise.
1686
1687 2001-09-20  Jim Meyering  <meyering@lucent.com>
1688
1689         * xstrtol.c (strtoimax): Guard declaration with
1690         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
1691         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
1692         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
1693         (strtoumax): Likewise, for completeness (it wasn't necessary).
1694
1695 2001-09-06  Paul Eggert  <eggert@twinsun.com>
1696
1697         * strtoimax.c (HAVE_LONG_LONG):
1698         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
1699         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
1700         to work around bug in IBM C compiler.
1701
1702 2001-09-16  Jim Meyering  <meyering@lucent.com>
1703
1704         * mkdir.c: New file.
1705
1706 2001-09-04  Paul Eggert  <eggert@twinsun.com>
1707
1708         * xgetcwd.c: Revert some of the previous change; intead,
1709         fix the HAVE_GETCWD_NULL code to behave more like the
1710         !HAVE_GETCWD_NULL code used to.
1711
1712         Include "xalloc.h".
1713         (xgetcwd): Do not return NULL when memory is exhausted; instead,
1714         invoke xalloc_die.
1715
1716 2001-09-04  Paul Eggert  <eggert@twinsun.com>
1717
1718         * xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
1719         Use ssize_t, not int, to store result of readlink.
1720         Check for ssize_t overflow as well as size_t overflow,
1721         as POSIX says the result of readlink is implementation-defined
1722         when ssize_t overflows.
1723         Remove unnecessary cast to char*.
1724         Use free+malloc instead of realloc, as the storage doesn't need
1725         to be preserved and it's clearer and can be more efficient that way.
1726         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
1727         * xreadlink.h (xreadlink): Update prototype.
1728
1729 2001-09-03  Paul Eggert  <eggert@twinsun.com>
1730
1731         * exclude.c (fnmatch_no_wildcards): Fix confusion between
1732         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
1733         spotted by Jim Meyering.
1734
1735 2001-09-03  Jim Meyering  <meyering@lucent.com>
1736
1737         * xreadlink.c (xreadlink): Preserve errno around `free' during failure.
1738
1739 2001-09-03  Paul Eggert  <eggert@twinsun.com>
1740
1741         * xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
1742         like the HAVE_GETCWD_NULL code.
1743         Include pathmax.h if not HAVE_GETCWD.
1744         Do not include xalloc.h.
1745         (INITIAL_BUFFER_SIZE): New symbol.
1746         Do not use xmalloc / xrealloc, since the caller is responsible for
1747         handling errors.  Preserve errno around `free' during failure.
1748         Do not overrun buffer when using getwd.
1749
1750 2001-09-03  Paul Eggert  <eggert@twinsun.com>
1751
1752         * xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
1753         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use getcwd (NULL, 0).
1754
1755 2001-09-02  Jim Meyering  <meyering@lucent.com>
1756
1757         * error.c: Update from GNU libc.
1758
1759 2001-09-01  Jim Meyering  <meyering@lucent.com>
1760
1761         * xreadlink.c: New file.
1762         * xreadlink.h: New file.
1763         * Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and xreadlink.h.
1764
1765         * regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
1766         doesn't conflict with sparc-sun-solaris2.7's definition in
1767         /usr/include/sys/int_types.h.
1768
1769         * exclude.c: Use `""', not `<>' to #include non-system header files.
1770         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
1771         and strncasecmp as r-values.  Unixware didn't have declarations.
1772
1773 2001-08-31  Jim Meyering  <meyering@lucent.com>
1774
1775         * xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
1776         Use an initial, malloc'd, buffer of length 128 rather than
1777         a statically allocated one of length 1024.
1778
1779 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1780
1781         * xgetcwd.c: Don't include pathmax.h.
1782         Include stdlib.h and unistd.h if available.
1783         Include xalloc.h.
1784         (xmalloc, xstrdup, free): Remove decls.
1785         (xgetcwd): Don't assume sizes fit in unsigned.
1786         Check for overflow when computing sizes.
1787         Simplify reallocation code.
1788
1789 2001-08-28  Paul Eggert  <eggert@twinsun.com>
1790
1791         * Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
1792
1793         * strtoimax.c: Renamed from strtoxmax.c, removing the
1794         old strtoimax.c.
1795
1796         Also, make the following further changes to make this file's
1797         configuration more similar to that of strtol.c:
1798         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
1799         (strtoumax, uintmax_t, strtoull, strtol): Remove.
1800         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
1801         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
1802         changed to signed values.
1803
1804         And make the following changes as well:
1805         Fix copyright notice, as 1999 was missing.
1806         (verify): New macro.
1807         (strtoimax): Check sizes at compile-time, not run-time.
1808         Prefer strtol to strtoll if both work.
1809         (main): Remove; it was not that useful and was a pain to maintain.
1810
1811         * strtoumax.c: Include strtoimax.c, not strtouxmax.c.
1812
1813 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1814
1815         * savedir.c (savedir): Remove size parameter, as POSIX says that
1816         a directory's st_size can have an arbitrary value, so the old
1817         usage could waste an arbitrary amount of memory.  All uses
1818         changed.
1819         * savedir.h: Update prototype.
1820
1821 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1822
1823         * xstrtol.c (strtoimax): New decl.
1824
1825 2001-08-28  Paul Eggert  <eggert@twinsun.com>
1826
1827         * xstrtol.h: Add copyright notice.
1828         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
1829         LONGINT_INVALID_SUFFIX_CHAR.
1830
1831 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1832
1833         * quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
1834         tm to be declared.
1835
1836 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1837
1838         * hash.c: Remove '2001' from copyright notice.
1839
1840 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1841
1842         * full-write.h: New file.
1843         * Makefile.am (libfetish_a_SOURCES): Add full-write.h.
1844         * full-write.c: Correct credits, as cccp.c no longer
1845         exists and anyway it was so heavily changed from the old cccp
1846         code as to be unrecognizable.  Include full-write.h.
1847         (full_write) Return size_t, with short writes meaning failure.
1848         All callers changed.  This fixes a bug with large buffers
1849         on 64-bit hosts.
1850         * utime.c: Include full-write.h.
1851
1852 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1853
1854         Merge 'exclude' changes from tar 1.13.22.
1855         This fixes one or two unlikely storage allocation overflow bugs,
1856         but doesn't change user-visible behavior otherwise.
1857
1858 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1859
1860         * exclude.c (bool): Declare, perhaps by including stdbool.h.
1861         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
1862         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
1863         Include if available.
1864         (<xalloc.h>): Include
1865         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
1866         (verify): New macro.  Use it to verify that EXCLUDE macros do not
1867         collide with FNM macros.
1868         (struct patopts): New struct.
1869         (struct exclude): Use it, as exclude patterns now come with options.
1870         (new_exclude): Support above changes.
1871         (new_exclude, add_exclude_file):
1872         Initial size must now be a power of two to simplify overflow checking.
1873         (free_exclude, fnmatch_no_wildcards): New function.
1874         (excluded_filename): No longer requires options arg, as the options
1875         are determined by add_exclude.  Now returns bool, not int.
1876         (excluded_filename, add_exclude):
1877         Add support for the fancy new exclusion options.
1878         (add_exclude, add_exclude_file): Now takes int options arg.
1879         Check for arithmetic overflow when computing sizes.
1880         (add_exclude_file): xrealloc might modify errno, so don't
1881         realloc until after errno might be used.
1882
1883         * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
1884         New macros.
1885         (free_exclude): New decl.
1886         (add_exclude, add_exclude_file): Now takes int options arg.
1887         (excluded_filename): No longer requires options arg, as the options
1888         are determined by add_exclude.  Now returns bool, not int.
1889
1890 2001-08-30  Paul Eggert  <eggert@twinsun.com>
1891
1892         * alloca.c (alloca): Arg is of type size_t, not unsigned.
1893
1894 2001-08-27  Jim Meyering  <meyering@lucent.com>
1895
1896         * Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
1897
1898         * version-etc.c (N_): Remove definition.
1899         Revert most of last change.
1900         Instead, simply don't mark the `Copyright...' string for translation.
1901         Based on advice from Paul Eggert.
1902
1903         * strtoxmax.c: Tweak comment.
1904
1905 2001-08-26  Jim Meyering  <meyering@lucent.com>
1906
1907         * version-etc.c (version_etc_copyright_fmt): Replace literal year
1908         of copyright with `%s' so translators don't get an untranslated
1909         message in 2002.
1910         (COPYRIGHT_YEAR): Define.
1911         (version_etc): Use fprintf rather than fputs.
1912         Suggestion from Ulrich Drepper.
1913
1914         * Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
1915
1916         * strtoll.c: New file, from GNU libc.
1917         * xstrtoimax.c: New file.
1918
1919         * xstrtol.h: Add xstrtoimax.
1920         * strtoumax.c: New file.  Simply include "strtoumax.c".
1921         * strtoimax.c: New file.  Likewise, but first define STRTOUXMAX_SIGNED.
1922
1923         * strtoumax.c: Factor to work both for unsigned and signed types, ...
1924         * strtoxmax.c: ... then renamed to this.
1925
1926 2001-08-13  Paul Eggert  <eggert@twinsun.com>
1927
1928         * Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
1929         Port to Solaris 8, where 'sed' requires a space after the 'r'
1930         command, and where sh dislikes "$/".  Clean up the spacing a bit.
1931         Redirect output to $tmp just once.
1932
1933 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
1934
1935         * addext.c (<errno.h>): Include.
1936         (errno): Declare if not defined.
1937         (addext): Work correctly when pathconf returns -1 and leaves
1938         errno alone because there is no limit.  Also, work even if
1939         pathconf returns a value greater than SIZE_MAX.
1940
1941 2001-08-12  Jim Meyering  <meyering@lucent.com>
1942
1943         * xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
1944         Simply `return getcwd (NULL, 0);'.
1945         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
1946         Use 1300 as initial value for length, not PATH_MAX.
1947
1948         * pathmax.h: Clean up cpp syntax.
1949
1950 2001-08-12  Jim Meyering  <meyering@lucent.com>
1951
1952         * gettimeofday.c: New file.
1953         * gtod.h: New file.
1954         * Makefile.am (libfetish_a_SOURCES): Add gtod.h.
1955
1956 2001-08-04  Jim Meyering  <meyering@lucent.com>
1957
1958         * error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if stmt,
1959         to get in sync with glibc.
1960
1961 2001-08-03  Paul Eggert  <eggert@twinsun.com>
1962
1963         The following changes are from gettext 0.10.39 as maintained by
1964         Bruno Haible.
1965
1966         * mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
1967         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
1968         with inverted sense.  All uses changed.
1969
1970         * mbswidth.c: Don't include <limits.h>.
1971         Include <stdlib.h> and <string.h> unconditionally.
1972         (iswcntrl, mbsinit, ISCNTRL): New macros.
1973         (mbsnwidth): Use K&R style function declarations.
1974         Don't bother checking for MB_LEN_MAX == 1, since the compiler
1975         can optimize it when MB_CUR_MAX == 1.
1976         The width of control characters is zero, not 1.
1977
1978 2001-07-15  Jim Meyering  <meyering@lucent.com>
1979
1980         * Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
1981         (BUILT_SOURCES): Add unlocked-io.h.
1982         (io_functions): Define.
1983         (unlocked-io.h): New rule.
1984         (DISTCLEANFILES): Add unlocked-io.h.
1985         (all-local): Depend on unlocked-io.h, to ensure it is created.
1986
1987         * unlocked-io.hin: New file
1988
1989         * regex.c: Update from glibc.
1990
1991 2001-07-05  Jim Meyering  <meyering@lucent.com>
1992
1993         * Makefile.am (noinst_HEADERS): Remove definition, per new automake
1994         recommendation.
1995         (libfetish_a_SOURCES): Put all .h files here instead.
1996         Remove a thus-exposed (better checks in automake) duplicate and
1997         two unnecessary .h files.
1998
1999 2001-06-11  Jim Meyering  <meyering@lucent.com>
2000
2001         * regex.c: Update from GNU libc.
2002
2003 2001-05-27  Jim Meyering  <meyering@lucent.com>
2004
2005         * readutmp.h (UT_TYPE): Define.
2006
2007 2001-05-24  Jim Meyering  <meyering@lucent.com>
2008
2009         * argmatch.c: Include "quote.h".
2010         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
2011         quote function.  Reported by Göran Uddeborg.
2012
2013 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
2014
2015         * dirname.c (dir_name): Compute append_dot using path, not newpath
2016         which is not yet declared.
2017
2018 2001-05-11  Paul Eggert  <eggert@twinsun.com>
2019
2020         * Makefile.am (libfetish_a_SOURCES):
2021         Add strftime.c, since we now compile it on all hosts.
2022
2023         * strftime.c (my_strftime):
2024         Define to nstrftime if emacs, but only if my_strftime is not defined.
2025         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
2026         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
2027         Add one more extra argument: a nanoseconds value.
2028         All uses changed.
2029         (ns): New macro.
2030         (my_strftime function): Add %N format.
2031         (emacs_strftimeu): Renamed from emacs_strftime,
2032         with extra ut argument.
2033
2034 2001-05-11  Paul Eggert  <eggert@twinsun.com>
2035
2036         dirname code cleanup.  base_name now behaves more compatibly
2037         with POSIX basename when given file names that have trailing
2038         slashes, and similarly for dir_name.  Add new primitives
2039         base_len and dir_len.  Put the directory-name-related decls
2040         into dirname.h.
2041
2042         * addext.c (ISSLASH, base_name): Remove; now in dirname.h.
2043         * backupfile.c (base_name): Likewise.
2044         * basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
2045         * dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
2046         * makepath.c (strip_trailing_slashes): Likewise.
2047         * path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN, ISSLASH):
2048         Likewise.
2049         * rename.c (strip_trailing_slashes): Likewise.
2050         * same.c (base_name): Likewise.
2051         * stripslash.c (ISSLASH): Likewise.
2052
2053         * addext.c: Include <dirname.h> after size_t is defined.
2054         * backupfile.c: Likewise.
2055
2056         * addext.c (addext): Use base_len to trim redundant
2057         trailing slashes instead of doing it ourselves.
2058         But do not trim the last slash if it is not redundant.
2059
2060         * backupfile.c (find_backup_file_name,
2061         max_backup_version): Use base_len instead of rolling it ourselves.
2062         Handle the case of "" and (on DOS) "C:" correctly.
2063
2064         * basename.c: Do not include <stdio.h>, <assert.h>; no longer needed.
2065         Include <string.h>, <dirname.h>.
2066         (base_name): Allow file names ending in slashes, other than names
2067         that are all slashes.  In this case, return the basename followed
2068         by the slashes.  This is more general, and can be used in places
2069         where the original base_name purposely had an assertion failure.
2070         (base_len): New function.
2071
2072         * dirname.c: Include <string.h> instead of <stdlib.h>.
2073         Do not include <assert.h>; no longer needed.
2074         Include xalloc.h.
2075         (memrchr): Remove decl.
2076         (dir_name_r): Remove.
2077         (dir_len): Renamed from dirlen.  All callers changed.
2078         Rewrite in terms of base_name, for simplicity and consistency.
2079         (dir_name): Never return NULL.  All callers changed.
2080         Do not include <stdlib.h> in test program; no longer needed.
2081         return 0; is fine for test program.
2082
2083         * dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
2084         New macros.
2085         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
2086
2087         * path-concat.c (path_concat): Use base_len to compute
2088         base length, not strlen; this means we cannot rely on memcpy
2089         to null-terminate.
2090
2091         * same.c (STREQ): Remove.
2092         (same_name): Handle the case where the basename ends in trailing '/'.
2093
2094         * stripslash.c (strip_trailing_slashes): Return nonzero if
2095         a slash was stripped.  Do not strip the last slash after a
2096         file system prefix.
2097
2098 2001-04-08  Jim Meyering  <meyering@lucent.com>
2099
2100         * getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
2101         recomputed; that's necessary when the offset spans a DST transition.
2102         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
2103
2104 2001-04-02  Jim Meyering  <meyering@lucent.com>
2105
2106         * regex.h, regex.c: Update from GNU libc.
2107
2108 2001-03-19  Paul Eggert  <eggert@twinsun.com>
2109
2110         * version-etc.c (version_etc_copyright): Update to 2001.
2111
2112 2001-03-16  Paul Eggert  <eggert@twinsun.com>
2113
2114         * tempname.c (uint64_t): Define to uintmax_t if
2115         not defined, and if UINT64_MAX is not defined.
2116         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
2117         Reported by John David Anglin.
2118
2119 2001-03-10  Bruno Haible  <haible@clisp.cons.org>
2120
2121         * localcharset.c (locale_charset): Allow wildcard syntax. Also resolve
2122         alias if codeset is empty.
2123         * config.charset (BeOS): Use wildcard syntax.
2124
2125 2001-03-13  Jim Meyering  <meyering@lucent.com>
2126
2127         * path-concat.c (path_concat) [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]:
2128         Don't insert a backslash when concatenating e.g., `C:' and `foo'.
2129         From Bruno Haible.
2130
2131 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
2132
2133         * localcharset.c (locale_charset): Don't use setlocale(LC_CTYPE,NULL).
2134         Don't return NULL.
2135         * unicodeio.c (print_unicode_char): Simplify accordingly.
2136
2137 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
2138
2139         * config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
2140         support for DOS/DJGPP.
2141
2142 2001-02-28  Paul Eggert  <eggert@twinsun.com>
2143
2144         * Makefile.am (libfetish_a_SOURCES):
2145         Add dup-safer.c, fopen-safer.c.
2146         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
2147
2148         * dup-safer.c, fopen-safer.c, stdio-safer.h, unistd-safer.h: New files.
2149
2150 2001-02-25  Paul Eggert  <eggert@twinsun.com>
2151
2152         The mkstemp replacement is taken from glibc 2.2.2, with some
2153         portability fixes for use outside glibc, as follows:
2154
2155         * tempname.c (struct_stat64): New macro.
2156         (direxists, __gen_tempname): Use it.
2157         This avoids a portability problem with Solaris 8.
2158
2159         * tempname.c (<config.h>): Include if HAVE_CONFIG_H.
2160         (<stddef.h>, <stdint.h>, <string.h>):
2161         Include only if STDC_HEADERS || _LIBC.
2162         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
2163         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
2164         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
2165         (__set_errno): Define this macro if <errno.h> doesn't.
2166         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
2167         Define these macros if <stdio.h> doesn't.
2168         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
2169         Define these macros if <sys/stat.h>
2170         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
2171         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
2172         __xstat64): Define if not _LIBC.
2173         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
2174         (__gen_tempname): Invoke gettimeofday only if
2175         HAVE_GETTIMEOFDAY || _LIBC;
2176         otherwise, fall back on plain "time".
2177         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
2178
2179         * mkstemp.c (__GT_FILE): Define to zero if not defined.
2180
2181         * mkstemp.c, tempname.c: New files, taken from glibc 2.2.2.
2182
2183 2001-02-17  Jim Meyering  <meyering@lucent.com>
2184
2185         * strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
2186         around included file name.
2187
2188         * strnlen.c (__strnlen): Merge in a change from GNU libc.
2189
2190         * strftime.c: Update from GNU libc (the only changes were to comments).
2191
2192 2001-02-13  Bruno Haible  <haible@clisp.cons.org>
2193
2194         * mbswidth.h (mbswidth): Also define as macro, to avoid prototype clash.
2195
2196 2001-02-17  Paul Eggert  <eggert@twinsun.com>
2197
2198         * mbswidth.c, quotearg.c (mbrtowc, mbsinit):
2199         Remove workaround macros for hosts that have mbrtowc but not
2200         mbstate_t, as we now insist on proper declarations for both
2201         before using mbrtowc.
2202
2203 2001-02-17  Jim Meyering  <meyering@lucent.com>
2204
2205         * regex.c: Update from libc.
2206
2207 2001-02-16  Paul Eggert  <eggert@twinsun.com>
2208
2209         * alloca.c (malloc): Undef before defining, since stdlib.h
2210         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
2211         Reported by Mark Hounschell via Paul Eggert.
2212
2213 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
2214
2215         * config.charset: Update for FreeBSD 4.2.
2216
2217 2001-01-26  Jim Meyering  <meyering@lucent.com>
2218
2219         * quotearg.c: Include stddef.h.
2220         * quote.c: Include stddef.h.
2221         Reported by Axel Kittenberger.
2222
2223         * xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
2224         line in double quotes so that it evokes a better diagnostic.
2225         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
2226         Reported by Axel Kittenberger.
2227
2228 2001-01-15  Bruno Haible  <haible@clisp.cons.org>
2229
2230         * unicodeio.c (print_unicode_char): Cast the second iconv() arg,
2231         to avoid a warning.  Add back 'const' to inptr.
2232
2233 2001-01-16  Jim Meyering  <meyering@lucent.com>
2234
2235         * basename.c: Include <stdio.h>, needed by assert on SunOS4.
2236         From Bruno Haible.
2237
2238 2001-01-14  Jim Meyering  <meyering@lucent.com>
2239
2240         * rename.c: New file.  From Volker Borchert.
2241         Include stdlib.h, string.h or strings.h, and xalloc.h.
2242         Use strip_trailing_slashes rather than open-coding it.
2243
2244 2001-01-03  Paul Eggert  <eggert@twinsun.com>
2245
2246         * strftime.c: Sync with glibc time/strftime.c 1.81.
2247
2248 2001-01-03  Jim Meyering  <meyering@lucent.com>
2249
2250         * unicodeio.c (print_unicode_char): Remove `const' from declaration of
2251         local `inptr' to avoid warning with some system declarations of iconv.
2252
2253 2000-12-29  Paul Eggert  <eggert@twinsun.com>
2254
2255         * modechange.c: Do not assume that mode_t uses the
2256         traditional octal encoding.  E.g. "chmod 1 FOO" should set
2257         the other-execute bit of FOO even if S_IXOTH != 1.
2258
2259         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
2260         WOTH, XOTH, ALLM): New macros.
2261         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
2262          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
2263         Use them.
2264         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
2265         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
2266         (mode_compile):
2267         No need to use uintmax_t; unsigned long is long enough.
2268         Don't bother to get suffix since we don't use it.
2269
2270 2000-12-24  Jim Meyering  <meyering@lucent.com>
2271
2272         * hash.c (is_prime): Return explicit boolean values.
2273         (hash_get_first): Return NULL to appease Irix5.6's 89.
2274         Reported by Nelson Beebe.
2275
2276 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
2277
2278         * localcharset.c (locale_charset): Add support for Win32.
2279
2280 2000-12-18  Paul Eggert  <eggert@twinsun.com>
2281
2282         * physmem.h, physmem.c: New files.
2283
2284         * Makefile.am (libfetish_a_SOURCES): Add physmem.c.
2285         (noinst_HEADERS): Add physmem.h.
2286
2287         * xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
2288         't' for compatibility with Solaris 8 sort.
2289
2290 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
2291
2292         * config.charset: Add support for BeOS.
2293
2294 2000-12-16  Jim Meyering  <meyering@lucent.com>
2295
2296         * getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
2297         SHELLS_FILE to a file name that's useful on djgpp systems.
2298         Include stdlib.h.
2299         (ADDITIONAL_DEFAULT_SHELLS): Define.
2300         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
2301         Based mostly on a patch from Prashant TR.
2302
2303 2000-12-16  Jim Meyering  <meyering@lucent.com>
2304
2305         This bug had a serious impact on chown: `chown N:M FILE' (for integer
2306         N and M) would have treated it like `chown N:N FILE'.
2307
2308         * userspec.c (parse_user_spec): Fix typo: s/u/g/.
2309
2310 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
2311
2312         * config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB, VISCII,
2313         CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256, CP1257
2314         to the list of canonical encodings. Rename EUC-CN to GB2312.
2315
2316 2000-12-08  Andreas Schwab  <schwab@suse.de>
2317
2318         * mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
2319         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
2320
2321 2000-12-07  Jim Meyering  <meyering@lucent.com>
2322
2323         * stripslash.c (ISSLASH): Define.
2324         (strip_trailing_slashes): Use ISSLASH rather than comparing against `/'.
2325         From Prashant TR.
2326
2327         * dirname.c (FILESYSTEM_PREFIX_LEN): Define.
2328         (dir_name_r): Declare this function as static.
2329         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
2330         manifest itself on a name containing a mix of slashes and
2331         backslashes.
2332         Make this function work with names starting with a DOS-style
2333         drive letter and colon prefix.
2334         (dir_name): Append `.' if necessary.
2335         Based mostly on patches from Prashant TR and Eli Zaretskii.
2336
2337         * dirname.h (dir_name_r): Remove prototype.
2338
2339 2000-12-05  Jim Meyering  <meyering@lucent.com>
2340
2341         * dirname.c (dir_name_r): Add `const' in a few local declarations.
2342
2343 2000-12-04  Jim Meyering  <meyering@lucent.com>
2344
2345         * path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
2346         Also include memory.h, stdlib.h, unistd.h if appropriate.
2347         Reported by Andreas Jaeger (conflicting declaration of malloc).
2348
2349 2000-12-02  Jim Meyering  <meyering@lucent.com>
2350
2351         * closeout.h: Make idempotent, to avoid some obscure warnings.
2352
2353 2000-12-01  Paul Eggert  <eggert@twinsun.com>
2354
2355         * memrchr.c: Include <config.h> before any system include file.
2356
2357 2000-11-29  Paul Eggert  <eggert@twinsun.com>
2358
2359         * dirname.c (dir_name_r): Fix typo: int -> size_t.
2360
2361 2000-11-26  Jim Meyering  <meyering@lucent.com>
2362
2363         * memcoll.c: Include sys/types.h.  From Werner Almesberger.
2364
2365 2000-11-22  Paul Eggert  <eggert@twinsun.com>
2366
2367         * strftime.c (my_strftime): Do not invoke mbrlen with a
2368         size of (size_t) -1; it's not portable.
2369
2370 2000-11-17  Akim Demaille  <akim@epita.fr>
2371
2372         * obstack.h: Formatting changes.
2373         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
2374         prevent type checking.
2375         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
2376         cast the value to (void *): assigning a `foo *' to a `void *'
2377         variable is valid.
2378         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
2379
2380 2000-11-17  Jim Meyering  <meyering@lucent.com>
2381
2382         * strstr.c: Update from GNU libc.
2383
2384 2000-11-16  Jim Meyering  <meyering@lucent.com>
2385
2386         * strverscmp.c: Incorporate weak-alias-related changes from glibc.
2387
2388 2000-11-11  Jim Meyering  <meyering@lucent.com>
2389
2390         * error.c: Add a couple #includes, merging from GNU libc version.
2391
2392 2000-11-10  Jim Meyering  <meyering@lucent.com>
2393
2394         * obstack.h: Update from GNU libc.
2395         * obstack.c: Likewise.
2396
2397 2000-11-06  Paul Eggert  <eggert@twinsun.com>
2398
2399         * getusershell.c (setusershell): Use rewind rather than
2400         fseek/fseeko, to avoid configuration hassles with fseeko.
2401         Don't bother opening SHELLS_FILE if shellstream is NULL;
2402         it's not necessary.
2403
2404 2000-11-05  Jim Meyering  <meyering@lucent.com>
2405
2406         * makepath.h (make_dir): Declare.
2407         * makepath.c (make_dir): Remove `static' attribute.
2408         Tweak a comment.
2409
2410 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
2411
2412         * hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
2413         last one in a bucket, advance to the next bucket.
2414
2415 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
2416
2417         * fnmatch.c: Do not comment out all the code if we are using
2418         the GNU C library, because in some cases we are replacing buggy
2419         code in the GNU C library itself.
2420
2421 2000-10-30  Paul Eggert  <eggert@twinsun.com>
2422
2423         * error.h, getline.h, modechange.h:
2424         Remove "2000" from Copyright line, as the file hasn't been
2425         changed this year other than in the copyright notice.
2426
2427         * xalloc.h: Add "2000" to Copyright line, as this file
2428         was changed this year.
2429
2430 2000-10-30  Paul Eggert  <eggert@twinsun.com>
2431
2432         * fnmatch.c (FOLD): Do not assume that characters are unsigned.
2433         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
2434         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
2435
2436 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
2437
2438         * regex.h (__restrict_arr): Move definition out of #ifndef block.
2439         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
2440         doesn't define __restrict_arr.
2441
2442 2000-10-29  Jim Meyering  <meyering@lucent.com>
2443
2444         * xstat.in: Fix grammar in comment.
2445
2446 2000-10-28  Jim Meyering  <meyering@lucent.com>
2447
2448         * memchr.c: Update from libc.
2449         Adjust for portability:
2450         [HAVE_STDLIB_H]: Include stdlib.h.
2451         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
2452         Undef __memchr, too.
2453         [!weak_alias]: Define __memchr to memchr.
2454
2455         * regex.c: Update from libc.
2456         * regex.h: Likewise.
2457         * getopt1.c: Likewise.
2458         * memcmp.c: Likewise.
2459
2460         * getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
2461         Avoid using fseek, when possible -- it's broken by design.
2462         Patch by Ulrich Drepper.
2463
2464 2000-10-26  Jim Meyering  <meyering@lucent.com>
2465
2466         * strftime.c: Update from libc.
2467
2468 2000-10-25  Jim Meyering  <meyering@lucent.com>
2469
2470         * obstack.c: Update from libc.
2471
2472 2000-10-23  Jim Meyering  <meyering@lucent.com>
2473
2474         * hard-locale.c (hard_locale): Revert last change -- it was simply
2475         wrong.  That set_locale call must not have any side effects.
2476         From Paul Eggert.
2477
2478 2000-10-22  Jim Meyering  <meyering@lucent.com>
2479
2480         * md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
2481         [CYCLIC]: Remove now-unused definition.
2482
2483         * save-cwd.c (O_DIRECTORY): Define, if needed.
2484         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
2485         Suggestion from Ulrich Drepper.
2486
2487 2000-10-21  Jim Meyering  <meyering@lucent.com>
2488
2489         * dirname.c (dir_name_r): New function, factored out of dir_name.
2490         (dir_name): Use dir_name_r.
2491         * dirname.h (dir_name_r): Declare it.
2492
2493 2000-10-21  Jim Meyering  <meyering@lucent.com>
2494
2495         * dirname.c (memrchr): Declare if necessary.
2496         (dir_name): Remove the restriction that there be no
2497         trailing slashes.  Now, this code skips past them, effectively
2498         ignoring them.
2499         [TEST_DIRNAME] (main): New unit tests.
2500
2501         * memrchr.c: New file from GNU libc.
2502         Undef __memrchr, too.
2503         [!weak_alias]: Define __memrchr to memrchr.
2504         Guard weak_alias use with `#ifdef weak_alias'.
2505
2506 2000-10-17  Jim Meyering  <meyering@lucent.com>
2507
2508         * quote.h (PARAMS): Define and use.
2509         Reported by Akim Demaille.
2510
2511         * getopt.c: Update from libc.
2512
2513 2000-10-16  Jim Meyering  <meyering@lucent.com>
2514
2515         * hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to setlocale.
2516         From Jan Fedak.
2517
2518 2000-09-25  Jim Meyering  <meyering@lucent.com>
2519
2520         * md5.h (rol): Define (from GnuPG).
2521
2522         * sha.c: Give credit (GnuPG) where due.
2523         (M): Use rol rather than open-coding it.
2524         Add a FIXME comment.
2525
2526 2000-09-21  Jim Meyering  <meyering@lucent.com>
2527
2528         * userspec.c (parse_user_spec): Remove debugging printf I'd added.
2529         Reported by Michael Stone.
2530
2531 2000-09-20  Jim Meyering  <meyering@lucent.com>
2532
2533         * Makefile.am (libfetish_a_SOURCES): Add sha.c.
2534         (noinst_HEADERS): Add sha.h.
2535         Based on code from Scott G. Miller and from GnuPG.
2536
2537 2000-09-15  Jim Meyering  <meyering@lucent.com>
2538
2539         * regex.c: Update from libc.
2540
2541 2000-09-10  Jim Meyering  <meyering@lucent.com>
2542
2543         * getopt.c (_getopt_internal): Update from glibc.
2544
2545 2000-09-09  Jim Meyering  <meyering@lucent.com>
2546
2547         * quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
2548         think it should be used as a general replacement for isascii.
2549         * fnmatch.c: Likewise.
2550         * mbswidth.c: Likewise
2551         * regex.c: Likewise.
2552
2553         Don't use atoi.
2554         * userspec.c: Include sys/param.h and limits.h.
2555         Include xstrtol.h.
2556         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
2557         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
2558         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
2559         UID, GID.  Check range.
2560
2561 2000-09-06  Jim Meyering  <meyering@lucent.com>
2562
2563         * getopt.c (_getopt_internal): Update from glibc.
2564
2565 2000-08-30  Jim Meyering  <meyering@lucent.com>
2566
2567         * strftime.c: Merge in changes from GNU libc.
2568
2569 2000-08-26  Jim Meyering  <meyering@lucent.com>
2570
2571         * closeout.c: Include "__fpending.h".
2572         (close_stdout_status): Return right away if there's nothing to flush.
2573
2574         * Makefile.am (noinst_HEADERS): Add __fpending.h.
2575         * __fpending.c: New file.
2576         * __fpending.h: New file.
2577
2578 2000-08-07  Paul Eggert  <eggert@twinsun.com>
2579
2580         Standardize on "memory exhausted" instead of "Memory exhausted"
2581         or "virtual memory exhausted".
2582         * obstack.c (print_and_abort): Use "memory exhausted", not
2583         "virtual memory exhausted".
2584         * same.c (same_name): Invoke xalloc_die instead of printing
2585         our own message.
2586         * userspec.c (parse_user_spec): Likewise.
2587         * bumpalloc.h: comment fix
2588         * same.c, userspec.c: Include xalloc.h.
2589
2590         * xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
2591         not char *const and pointing to a constant array.
2592         * xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
2593         (xrealloc): Comment fix.
2594
2595         * userspec.c (parse_user_spec):
2596         Don't translate a message until just before returning,
2597         to avoid unnecessary translation.
2598
2599 2000-08-07  Jim Meyering  <meyering@lucent.com>
2600
2601         * addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
2602         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
2603         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
2604         getgroups.c, gethostname.c, getopt.h, group-member.c,
2605         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
2606         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
2607         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
2608         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
2609         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
2610         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
2611         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
2612         yesno.c: Back out Copyright date changes for each file with no change
2613         this year.  This eases coordination with other programs using the same
2614         source code modules.  From Paul Eggert.
2615
2616 2000-08-03  Greg McGary  <greg@mcgary.org>
2617
2618         * regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
2619         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
2620         (EXTEND_BUFFER): Use them.
2621
2622 2000-08-01  Jim Meyering  <meyering@lucent.com>
2623
2624         * dirname.c (ISSLASH): Define.
2625         (BACKSLASH_IS_PATH_SEPARATOR): Define.
2626         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
2627         both `\' and `/' may be use as path separators.
2628         Based on a patch from Prashant TR.
2629
2630 2000-07-31  Paul Eggert  <eggert@twinsun.com>
2631
2632         * quotearg.c (quotearg_n_options): Don't make the initial
2633         slot vector a constant, since it might get modified.
2634
2635 2000-07-31  Jim Meyering  <meyering@lucent.com>
2636
2637         * xmalloc.c: Use `virtual memory exhausted', not `Memory exhausted'.
2638         * obstack.c (print_and_abort): Likewise.
2639
2640 2000-07-30  Paul Eggert  <eggert@twinsun.com>
2641
2642         * quotearg.c (quotearg_n_options): Preallocate a slot 0
2643         buffer, so that the caller can always quote one small
2644         component of a "memory exhausted" message in slot 0.
2645         From a suggestion by Jim Meyering.
2646
2647 2000-07-30  Jim Meyering  <meyering@lucent.com>
2648
2649         * makepath.c (make_path): Quote the other instance, too.
2650
2651         * quotearg.c (N_STATIC_SLOTVECS): Define.
2652         (STATIC_BUF_SIZE): Define.
2653         (quotearg_n_options): Use only statically allocated storage when
2654         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
2655         than STATIC_BUF_SIZE.
2656
2657 2000-07-29  Jim Meyering  <meyering@lucent.com>
2658
2659         * diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
2660         * dirname.c (dir_name): Likewise.
2661
2662         * basename.c (base_name): Use ISSLASH rather than comparing against `/'.
2663
2664         * dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
2665         (dir_name): Assert that there are no trailing slashes.
2666
2667 2000-07-18  Bruno Haible  <haible@clisp.cons.org>
2668
2669         * mbswidth.h (mbswidth): Add a flags argument.
2670         (mbswidth): New declaration.
2671         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
2672         * mbswidth.c (mbswidth): Add a flags argument.
2673         (mbsnwidth): New function.
2674
2675 2000-07-24  Jim Meyering  <meyering@lucent.com>
2676
2677         * mbswidth.c: Remove useless #else.  From Bruno Haible.
2678
2679 2000-07-23  Paul Eggert  <eggert@twinsun.com>
2680
2681         * mbswidth.c (_XOPEN_SOURCE):
2682         Don't define; this causes problems on Solaris 7.
2683         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
2684
2685 2000-07-23  Paul Eggert  <eggert@twinsun.com>
2686
2687         * quotearg.c:
2688         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
2689         so that mbstate_t is always defined.
2690
2691         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
2692         be 1 in at least one GCC installation, and this configuration
2693         error is likely to be common.  Ignoring MB_LEN_MAX hurts
2694         performance on hosts that have mbrtowc but have only unibyte
2695         locales, but I assume these hosts are rare.
2696
2697 2000-07-23  Paul Eggert  <eggert@twinsun.com>
2698
2699         * quotearg.c: Streamline by invoking multibyte code only if needed.
2700         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
2701         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
2702         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
2703         invoke multibyte primitives.
2704
2705 2000-07-23  Jim Meyering  <meyering@lucent.com>
2706
2707         * basename.c (base_name): Add an assertion.
2708
2709 2000-07-15  Bruno Haible  <clisp.cons.org>
2710
2711         * quotearg.c: When the system forces us to redefine mbstate_t,
2712         shadow its mbsinit function.
2713
2714 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
2715
2716         * mbswidth.h: New file.
2717         * mbswidth.c: New file.
2718         * Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
2719         (noinst_HEADERS): Add mbswidth.h.
2720
2721 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
2722
2723         * config.charset: Add support for FreeBSD. Improve support for HP-UX
2724         and IRIX 6.
2725
2726 2000-07-15  Jim Meyering  <meyering@lucent.com>
2727
2728         * makepath.c: Include quote.h.
2729         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
2730         corresponding argument in a `quote (...)' call.
2731         Give better diagnostics.
2732
2733         * Makefile.am (libfetish_a_SOURCES): Add quote.c.
2734         (noinst_HEADERS): Add quote.h.
2735
2736         * quote.c (quote, quote_n): New file.  Two functions taken verbatim
2737         from tar's src/misc.c.
2738         * quote.h: New file.  Prototypes for same.
2739
2740 2000-07-10  Paul Eggert  <eggert@twinsun.com>
2741
2742         From a suggestion by Bruno Haible.
2743         * quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
2744         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
2745         to decide whether to define the BeOS workaround macro;
2746         this adjusts to the change to AC_MBSTATE_T.
2747
2748 2000-07-13  Paul Eggert  <eggert@twinsun.com>
2749
2750         * quotearg.h (enum quoting style): New enum clocale_quoting_style.
2751
2752         * quotearg.c (quoting_style_args, quoting_style_vals,
2753         quotearg_buffer_restyled): Add support for
2754         clocale_quoting_style.  Undo previous change to
2755         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
2756         and "{RIGHT QUOTATION MARK}" msgids.
2757
2758 2000-07-05  Paul Eggert  <eggert@twinsun.com>
2759
2760         The old behavior of quoting `like this' doesn't look good with
2761         newer, ISO-style fonts.  See:
2762         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
2763
2764         Instead, quote "like this" by default.  Let the translator
2765         tailor the locale-specific quoting behavior by providing
2766         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
2767
2768         * quotearg.c (N_): New macro.
2769         (gettext_default): New function.
2770         (quotearg_buffer_restyled): Use
2771         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
2772         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
2773
2774 2000-07-09  Jim Meyering  <meyering@lucent.com>
2775
2776         * Most files: Update copyright dates to include 2000.
2777
2778 2000-07-08  Jim Meyering  <meyering@lucent.com>
2779
2780         * xgethostname.c (ENAMETOOLONG): Define to an unlikely value
2781         if not defined.
2782         (xgethostname): Remove now-unnecessary #ifdef.
2783         Move declaration of `err' into loop where it's used.
2784
2785 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
2786
2787         * xgethostname.c (xgethostname): Protect against the SunOS5.5 bug
2788         by allocating a larger buffer. Test the gethostname return value for
2789         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
2790         returns an error and ENAMETOOLONG isn't defined.
2791
2792 2000-07-05  Paul Eggert  <eggert@twinsun.com>
2793         and Bruno Haible  <haible@clisp.cons.org>
2794
2795         * quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
2796
2797 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
2798
2799         * quotearg.c (struct quoting_options): Simplify quote_these_too
2800         dimension.
2801
2802 2000-07-03  Jim Meyering  <meyering@lucent.com>
2803
2804         * strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
2805         Reported by Bruno Haible.
2806
2807 2000-07-04  Jim Meyering  <meyering@lucent.com>
2808
2809         * quotearg.c: Make inclusion of <wchar.h> independent of whether
2810         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
2811         lacks mbrtowc.
2812
2813 2000-07-03  Paul Eggert  <eggert@twinsun.com>
2814         and Bruno Haible  <haible@clisp.cons.org>
2815
2816         * quotearg.c (mbrtowc):
2817         Assign to *pwc, and return 1 only if result is nonzero.
2818         (iswprint): Use ISPRINT when substituting our own mbrtowc.
2819
2820 2000-07-03  Jim Meyering  <meyering@lucent.com>
2821
2822         * readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
2823         This is necessary to get a definition of e.g., UTMP_FILE on HP-UX 10.20.
2824         From Bob Proulx.
2825
2826 2000-07-02  Jim Meyering  <meyering@lucent.com>
2827
2828         * quotearg.c (mbstate_t): Don't define here.
2829
2830 2000-07-02  Jim Meyering  <meyering@lucent.com>
2831
2832         * nanosleep.c (SIGCONT): Define if not already defined.
2833
2834 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2835
2836         * mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
2837         per change in ../m4/ls-mntd-fs.m4.
2838         (read_filesystem_list): Ignore symbolic links.
2839
2840 2000-06-29  Jim Meyering  <meyering@lucent.com>
2841
2842         * same.c: Include <string.h> or <strings.h>, as appropriate,
2843         for declaration of strcmp.
2844
2845         * long-options.c: Include <stdlib.h>, for declaration of exit.
2846
2847         * mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
2848         Avoid warning by casting result to `char *' to remove `const'.
2849
2850 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2851
2852         * Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
2853
2854 2000-06-26  Paul Eggert  <eggert@twinsun.com>
2855
2856         savedir now sets errno on failure and invokes xmalloc to get memory.
2857         Fix a couple of other minor bugs while we're at it.
2858
2859         * savedir.c (<unistd.h>): Do not include; there's no need.
2860         (NAMLEN): Remove macro.
2861         (malloc, realloc): Remove decls.
2862         (stpcpy): Likewise.
2863         ("xalloc.h"): Include.
2864         (NAME_SIZE_DEFAULT): New macro.
2865         (savedir): Use xmalloc / xrealloc to allocate memory.
2866         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
2867         Skip "" directory entries.
2868         Use strlen to calculate directory entry length, since the old method
2869         is rarely used these days and isn't worth supporting.
2870         Don't use a pointer after freeing it.
2871         Check for integer overflow when calculating allocation size.
2872         Use memcpy to copy entries, instead of stpcpy.
2873         Set errno properly when returning NULL.
2874         Check for readdir error.
2875
2876 2000-06-26  Jim Meyering  <meyering@lucent.com>
2877
2878         * posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
2879
2880 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2881
2882         * getusershell.c (xmalloc, xrealloc): Remove functions.
2883         Include xalloc.h.
2884         Don't include <stdlib.h>.  Don't declare malloc, realloc.
2885
2886 2000-06-23  Bruno Haible  <haible@clisp.cons.org>
2887
2888         * unicodeio.c (print_unicode_char): Work around ansi2knr deficiency.
2889
2890 2000-06-24  Jim Meyering  <meyering@lucent.com>
2891
2892         * error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
2893
2894 2000-06-21  Jim Meyering  <meyering@lucent.com>
2895
2896         * getpass.c: New file, from Bruno Haible.  Required for BeOS.
2897
2898 2000-06-19  Paul Eggert  <eggert@twinsun.com>
2899
2900         * quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
2901         (mbrtowc, mbstate_t): Define substitutes if
2902         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
2903         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
2904         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
2905
2906 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2907
2908         * xgetcwd.c (xgetcwd): If the required pathname length is smaller
2909         than 1024, return a memory chunk of least possible size, instead
2910         of size PATH_MAX + 2. In the loop, increment the size proportionally.
2911         Use free/xmalloc instead of xrealloc to avoid copying for very long
2912         paths.
2913
2914 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2915
2916         * canon-host.c (canon_host): Use malloc and memcpy to copy an
2917         address, not strdup.  Include <stdlib.h> and don't declare free().
2918
2919 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
2920
2921         * path-concat.c (path_concat): Don't access dir[-1] if dir is
2922         the empty string.
2923
2924 2000-06-21  Jim Meyering  <meyering@lucent.com>
2925
2926         * Makefile.am (libfetish_a_SOURCES): Add getstr.c.
2927         (noinst_HEADERS): Add getstr.h.
2928
2929         * getline.c (getstr): Move into a separate file.
2930         * getstr.c (getstr): New file, extracted from getline.c, with
2931         the following changes: new parameter, delim2; both delim[12]
2932         parameters have type `int', not `char'.  The latter would lose
2933         with 8-bit delimiters.
2934         * getstr.h: New file.
2935
2936 2000-06-19  Jim Meyering  <meyering@lucent.com>
2937
2938         * getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
2939
2940 2000-06-18  Jim Meyering  <meyering@lucent.com>
2941
2942         * mkdir.c: Remove file, due mainly to copyright incompatibility.
2943         Besides, these days every porting target provides a mkdir function.
2944
2945         * strnlen.c: Include memory.h, string.h, and/or strings.h as needed.
2946         (this snippet comes from src/system.h).
2947
2948 2000-06-15  Paul Eggert  <eggert@twinsun.com>
2949
2950         * human.c (adjust_value): New function.
2951         (human_readable_inexact): Apply rounding style even when
2952         printing approximate values.
2953
2954 2000-06-14  Paul Eggert  <eggert@twinsun.com>
2955
2956         * human.c (human_readable_inexact): Allow an input block
2957         size that is not a multiple of the output block size, and vice versa.
2958         Reported by Piergiorgio Sartor.
2959
2960 2000-06-14  Paul Eggert  <eggert@twinsun.com>
2961
2962         * getdate.y (get_date): Apply relative times after time
2963         zone indicator, not before.  Reported by Todd A. Jacobs.
2964
2965 2000-06-13  Jim Meyering  <meyering@lucent.com>
2966
2967         * Makefile.am (all-local): Depend on lstat.c and stat.c.
2968
2969         * xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
2970
2971 2000-06-12  Paul Eggert  <eggert@twinsun.com>
2972
2973         * xstat.in: Include <stdlib.h> in lstat, to declare "free".
2974
2975 2000-06-04  Paul Eggert  <eggert@twinsun.com>
2976
2977         * strnlen.c: Include <config.h> if HAVE_CONFIG_H.
2978
2979 2000-06-04  Jim Meyering  <meyering@lucent.com>
2980
2981         * getugroups.c (getugroups): Cast -1 to gid_t, for systems like
2982         SunOS4.1.4 for which gid_t is an unsigned type.
2983
2984 2000-06-03  Jim Meyering  <meyering@lucent.com>
2985
2986         * strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
2987
2988 2000-05-26  Bruno Haible  <haible@clisp.cons.org>
2989
2990         * Makefile.am (install-exec-local): On systems with glibc-2.1 or
2991         newer, don't install charset.alias.
2992         * config.charset: Change the Linux/glibc rules so they become empty
2993         on glibc-2.1 or newer.
2994
2995 2000-06-02  Jim Meyering  <meyering@lucent.com>
2996
2997         * mountlist.c: Back out last change.  Instead, do this...
2998         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the me_dummy
2999         member using the same `ignore'-testing code.
3000         * mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
3001         fs_type strings.
3002         From Mark D. Roth.
3003
3004 2000-05-29  Jim Meyering  <meyering@lucent.com>
3005
3006         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore mounts
3007         with the `ignore' attribute.  Based on a patch from Mark D. Roth.
3008
3009 2000-05-22  Jim Meyering  <meyering@lucent.com>
3010
3011         * makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
3012
3013 2000-05-18  Jim Meyering  <meyering@lucent.com>
3014
3015         * hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
3016         back, too, since it may have been modified by allocate_entry.
3017         (hash_delete): Rewrite to use neither the assignment operator
3018         nor the comma operator in an if-expression.
3019
3020 2000-05-15  Paul Eggert  <eggert@twinsun.com>
3021
3022         * closeout.c:
3023         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
3024         Remove; no longer needed.
3025         "quotearg.h": Add include.
3026         (file_name): Do not bother to explicitly initialize to NULL; it's less
3027         efficient on some hosts.
3028         (close_stdout_status): Remove test as to whether stdout was already
3029         closed; it breaks for the case "echo x | sort >&-".
3030         Quote file name colons.
3031         Do not assume that _("write error") lacks format strings.
3032
3033 2000-05-15  Jim Meyering  <meyering@lucent.com>
3034
3035         * version-etc.c (version_etc_copyright): Update the copyright string
3036         used in all --version output.
3037
3038 2000-05-14  Jim Meyering  <meyering@lucent.com>
3039
3040         * closeout.c (close_stdout_set_file_name): New function.
3041         (close_stdout_status): Use new file-scoped global.
3042         Return right away if fstat says the stdout file descriptor is invalid.
3043         * closeout.h (close_stdout_set_file_name): Declare.
3044
3045 2000-05-10  Jim Meyering  <meyering@lucent.com>
3046
3047         * closeout.c [default_exit_status]: New file-scoped variable.
3048         (close_stdout_set_status): New function.
3049         * closeout.h (close_stdout_set_status): Declare.
3050
3051 2000-05-08  Jim Meyering  <meyering@lucent.com>
3052
3053         * long-options.c: Don't include closeout.h.
3054         (parse_long_options): Don't call close_stdout for --version.
3055
3056 2000-05-06  Jim Meyering  <meyering@lucent.com>
3057
3058         * strnlen.c: Undefine __strnlen and strnlen.
3059         [!weak_alias]: Define __strnlen to strnlen.
3060
3061         * atexit.c: New file, from libiberty.
3062
3063 2000-05-06  Jim Meyering  <meyering@lucent.com>
3064
3065         * closeout.c (close_stdout_status): Also check for errors on the
3066         stderr stream.
3067
3068 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
3069
3070         * localcharset.c (get_charset_aliases): Use malloc, realloc and memcpy
3071         instead of xmalloc, xrealloc, path_concat.
3072         (locale_charset): Treat empty environment variables as absent.
3073         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
3074
3075 2000-05-04  Jim Meyering  <meyering@lucent.com>
3076
3077         * getopt.c: Update from glibc.
3078         * obstack.c: Likewise.
3079         * obstack.h: Likewise.
3080         * regex.c: Likewise.  NB: K&R compiler support is dropped for this file
3081
3082         * regex.h: Likewise.
3083         * strndup.c: Likewise.
3084         * strnlen.c: New file, from glibc.
3085
3086 2000-05-01  Jim Meyering  <meyering@lucent.com>
3087
3088         * full-write.c (full_write): Remove `FIXME' part of comment.
3089
3090 2000-04-29  Jim Meyering  <meyering@lucent.com>
3091
3092         * path-concat.c: Declare strdup only if it's not defined.
3093         * canon-host.c: Likewise.
3094
3095 2000-04-28  Jim Meyering  <meyering@lucent.com>
3096
3097         * rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to avoid
3098         redefinition warning on some systems (HPUX).  Otherwise, regex.h is
3099         included first, then limits.h is included by locale.h by libintl.h.
3100         From John David Anglin.
3101
3102 2000-04-25  Jim Meyering  <meyering@lucent.com>
3103
3104         * makepath.c (S_IRWXUGO): Define.
3105         (make_path): Always perform explicit chmod if MODE specifies any
3106         of the `special' permission bits.  Prompted by a bug report against
3107         install from Mate Wierdl and Joost van Baal.
3108
3109 2000-04-18  Jim Meyering  <meyering@lucent.com>
3110
3111         * README: New file.
3112
3113         * getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
3114         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
3115
3116 2000-04-17  Jim Meyering  <meyering@lucent.com>
3117
3118         * strftime.c (my_strftime) [strftime]: Declare strftime here, since
3119         the definition of it to rpl_strftime also defined-away the system's
3120         declaration.
3121
3122 2000-04-15  Jim Meyering  <meyering@lucent.com>
3123
3124         Use `C' to denote so-called `contiguous' files, the same way
3125         that tar does.
3126         * filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
3127         (ftypelet): Use S_ISCTG.
3128         From Michael Deutschmann.
3129
3130 2000-04-14  Jim Meyering  <meyering@lucent.com>
3131
3132         * strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
3133
3134 2000-04-08  Jim Meyering  <meyering@lucent.com>
3135
3136         * Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
3137         names don't conflict.  Reported by Eli Zaretskii.
3138
3139 2000-03-28  Bruno Haible  <haible@clisp.cons.org>
3140
3141         * unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
3142         bug.  Deal with the different error behavior of Irix iconv.
3143
3144 2000-04-07  Jim Meyering  <meyering@lucent.com>
3145
3146         * putenv.c: Move inclusion of errno.h so it follows that of sys/types.h,
3147         to work around system header problems on AIX 3.2.5.  From Bruno Haible.
3148
3149 2000-04-05  Jim Meyering  <meyering@lucent.com>
3150
3151         Portability tweaks required for ultrix4.3.
3152         * readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare getutent.
3153         * readutmp.c: Include sys/types.h before sys/stat.h.
3154         * canon-host.c: Declare strdup.
3155         * path-concat.c: Likewise.
3156         From John David Anglin.
3157
3158 2000-04-04  Jim Meyering  <meyering@lucent.com>
3159
3160         Be more DOS 8.3-friendly.
3161         * ref-add.sin: Renamed from ref-add.sed.in.
3162         * ref-del.sin: Renamed from ref-del.sed.in.
3163         * Makefile.am: Reflect renaming.
3164         Reported by Eli Zaretskii.
3165
3166         Use a temporary file name that won't clash with `charset.alias'
3167         in the DOS 8.3 name space.
3168         * Makefile.am (charset_tmp): Define.
3169         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
3170         (uninstall-local): Likewise.
3171         Reported by Eli Zaretskii.
3172
3173 2000-03-29  Paul Eggert  <eggert@twinsun.com>
3174
3175         * time/strftime.c (my_strftime): Make sure we call the system
3176         strftime, not ourselves, when invoking the underlying strftime.
3177
3178 2000-03-24  Jim Meyering  <meyering@lucent.com>
3179
3180         * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
3181         (charset_alias): Define.
3182         (install-exec-local): Factor out common code.
3183         (uninstall-local): Split lines longer than 80.
3184         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
3185         (SUFFIXES): Define.
3186         (.sed.in.sed): New rule.  Don't redirect directly to $@.
3187         (CLEANFILES): Add ref-add.sed and ref-del.sed.
3188
3189 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
3190
3191         * config.charset: Output a line containing "Packages using this file".
3192         * ref-add.sed.in, ref-del.sed.in: New files.
3193         * Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
3194         ref-del.sed): New rules.
3195
3196 2000-03-17  Jim Meyering  <meyering@lucent.com>
3197
3198         * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
3199         Otherwise, include <strings.h>
3200
3201 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
3202
3203         * unicodeio.c (utf8_wctomb): New function.
3204         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
3205         format instead of in UCS-4 with platform dependent endianness.
3206
3207 2000-03-07  Paul Eggert  <eggert@twinsun.com>
3208
3209         * savedir.c (savedir): Work even if directory size is
3210         negative; this can happen with some screwy NFS configurations.
3211
3212 2000-03-06  Jim Meyering  <meyering@lucent.com>
3213
3214         * localcharset.c (get_charset_aliases): Don't try to free file_name
3215         if it's NULL (because we ran out of memory).  From Bruno Haible.
3216
3217 2000-03-05  Jim Meyering  <meyering@lucent.com>
3218
3219         * localcharset.c ("path-concat.h"): Include.
3220         (get_charset_aliases): Use path_concat instead of ANSI string
3221         concatenation.
3222
3223         * unicodeio.h (PARAMS): Define.
3224         Use it to guard prototype.
3225
3226 2000-03-04  Jim Meyering  <meyering@lucent.com>
3227
3228         * Makefile.am (install-exec-local): Create $(libdir) before installing
3229         into it.
3230         (uninstall-local): Uncomment this rule so `make distcheck' works
3231         once again.
3232
3233         * unicodeio.c (<errno.h>): Include it.
3234         (errno): Declare if not defined.
3235
3236         * localcharset.c: Add Bruno's comment justifying use of volatile.
3237
3238         * config.charset: New version, incorporating remarks from a linux
3239         i18n mailing list.  From Bruno Haible.
3240
3241 2000-03-02  Jim Meyering  <meyering@lucent.com>
3242
3243         * Makefile.am (EXTRA_DIST): Add config.charset.
3244
3245 2000-03-01  Jim Meyering  <meyering@lucent.com>
3246
3247         * localcharset.c: Guard some #includes with `#if HAVE_...'.
3248         * unicodeio.c: Likewise.
3249
3250 2000-02-02  Bruno Haible  <haible@clisp.cons.org>
3251
3252         * config.charset: New file.
3253         * localcharset.c: New file.
3254         * unicodeio.h, unicodeio.c: New files.
3255         * Makefile.am (DEFS): Add -DLIBDIR=...
3256         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
3257         (noinst_HEADERS): Add unicodeio.h.
3258         (all-local, install-exec-local, charset.alias): New targets.
3259
3260 2000-02-28  Paul Eggert  <eggert@twinsun.com>
3261
3262         * quotearg.c (ALERT_CHAR): New macro.
3263         (quotearg_buffer_restyled): Use it.
3264
3265 2000-02-27  Jim Meyering  <meyering@lucent.com>
3266
3267         * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
3268         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
3269
3270         * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H',
3271         not `#if STDC_HEADERS'.
3272         Declare malloc if needed.
3273
3274         * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..'
3275         now that autoconf always defines the HAVE_DECL_ symbols.
3276         * human.c: Likewise.
3277         * same.c: Likewise.
3278         * strtoumax.c: Likewise.
3279
3280         * backupfile.c: Arrange for cpp to fail if the configure-time
3281         declaration check was not run.
3282         * hash.c: Likewise.
3283         * human.c: Likewise.
3284         * same.c: Likewise.
3285         * strtoumax.c: Likewise.
3286
3287         * userspec.c (parse_user_spec): If there is no `:' but there is a `.',
3288         then first look up the entire `.'-containing string as a login name.
3289
3290 2000-02-18  Paul Eggert  <eggert@twinsun.com>
3291
3292         * getdate.y: Handle two-digit years with leading zeros correctly.
3293         (textint): New typedef.
3294         (parser_control): Member year changed from int to textint.
3295         All uses changed.
3296         (YYSTYPE): Removed; replaced by %union with int and textint members.
3297         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
3298         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
3299         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
3300         (tSNUMBER, tUNUMBER): Now of type <textintval>.
3301         (date, number, to_year): Use width of number in digits, not its value,
3302         to determine whether it's a 2-digit year, or a 2-digit time.
3303         (yylex): Store number of digits of numeric tokens.
3304         Reported by John Kendall.
3305
3306         (parser_control): Changed from struct parser_control to typedef (for
3307         consistency).  All uses changed.
3308
3309         (tID): Removed; not used.
3310         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
3311
3312 2000-02-14  Paul Eggert  <eggert@twinsun.com>
3313
3314         * getpagesize.h (getpagesize): Port to VMS for Alpha;
3315         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
3316
3317 2000-02-12  Jim Meyering  <meyering@lucent.com>
3318
3319         * userspec.c (ISDIGIT): Define it.
3320         (isdigit): Remove definition.
3321         (is_number): Use ISDIGIT, not isdigit.
3322         <libintl.h>: Include.
3323         (_ and N_): Define.
3324         (parse_user_spec): Mark translatable strings.
3325
3326 2000-02-10  Jim Meyering  <meyering@lucent.com>
3327
3328         With these changes, nanosleep.[ch] are finally enough like the other
3329         lib/* replacement files to compile on a few more losing systems.
3330
3331         * nanosleep.h: Don't include config.h.
3332         Remove prototype from declaration of nanosleep.
3333         (PARAMS): Remove now-unneeded definition.
3334         * nanosleep.c: #undef nanosleep.
3335         (rpl_nanosleep): Rename from nanosleep.
3336
3337 2000-02-03  Jim Meyering  <meyering@lucent.com>
3338
3339         * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
3340         rather than with `#if HAVE_UTMPNAME'.
3341
3342 2000-02-01  Jim Meyering  <meyering@lucent.com>
3343
3344         * readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
3345
3346 2000-01-31  Jim Meyering  <meyering@lucent.com>
3347
3348         * nanosleep.h (nanosleep): Guard declaration with
3349         `#if ! HAVE_DECL_NANOSLEEP'.
3350         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
3351         the declaration in that vendor's sys/timers.h.
3352         Reported by Christian Krackowizer.
3353
3354         * quotearg.c (ISASCII): Add #undef and move definition to follow
3355         inclusion of wctype.h to work around solaris2.6 namespace pollution.
3356         (ISPRINT): Likewise.
3357         Reported by Tom Tromey.
3358
3359 2000-01-30  Jim Meyering  <meyering@lucent.com>
3360
3361         * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding
3362         uses of ->ut_name.  The latter doesn't work with new Linux header files
3363         where only utmpx.ut_user is declared.
3364
3365         * readutmp.h (UT_USER): Define.
3366
3367 2000-01-23  Jim Meyering  <meyering@lucent.com>
3368
3369         * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
3370         obstack.c.
3371
3372 2000-01-22  Jim Meyering  <meyering@lucent.com>
3373
3374         * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
3375         [! HAVE_DECL_STRTOULL]: Declare strtoull.
3376         Required for some AIX systems.  Reported by Christian Krackowizer.
3377         [TESTING] (main): New function.
3378
3379         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
3380         * dirname.c (dir_name): Support for DOS-style file names with drive
3381         letters.
3382
3383         * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint.
3384
3385         * strverscmp.c (ISDIGIT): Define.
3386         (strverscmp): Use ISDIGIT, not isdigit.
3387
3388 2000-01-17  Paul Eggert  <eggert@twinsun.com>
3389
3390         * nanosleep.c (nanosleep):
3391         Don't use SA_INTERRUPT to decide whether to call sigaction, as
3392         POSIX.1 doesn't require SA_INTERRUPT and some systems
3393         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
3394         it's been part of POSIX.1 since day 1 (in 1988).
3395
3396 2000-01-17  Jim Meyering  <meyering@lucent.com>
3397
3398         * interlock: Remove unused file.  Reported by François Pinard.
3399
3400 2000-01-16  Paul Eggert  <eggert@twinsun.com>
3401
3402         * quotearg.c (quotearg_buffer_restyled): Do not quote
3403         alert, backslash, formfeed, and vertical tab unnecessarily in
3404         shell quoting style.
3405
3406 Local Variables:
3407 version-control: never
3408 End: