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