1702d23c3106d8addbe15a035b2278dd8906a855
[gnulib.git] / lib / ChangeLog
1 2001-11-27  Paul Eggert  <eggert@twinsun.com>
2
3         * quotearg.h (quotearg_n, quotearg_n_style):
4         First arg is int, not unsigned.
5         * quotearg.c (quotearg_n, quotearg_n_style): Likewise.
6         (SIZE_MAX, UINT_MAX): New macros.
7         (quotearg_n_options): Abort if N is negative.
8         Avoid overflow check on hosts where size_t is 64 bits and int
9         is 32 bits, as overflow is impossible there.
10         Fix off-by-one typo that caused unnecessary reallocation.
11
12 2001-11-27  Jim Meyering  <meyering@lucent.com>
13
14         * tempname.c: Merge with version from libc.
15         * regex.c: Likewise.
16
17         * tempname.c: Include stdlib.h unconditionally.  On some old systems
18         for which STDC_HEADERS is 0, it was not included, resulting in a
19         warning about an integer-to-pointer conversion problem with getenv.
20         Reported by Volker Borchert.
21
22 2001-11-26  Jim Meyering  <meyering@lucent.com>
23
24         * gtod.h: Remove file.
25         * Makefile.am (libfetish_a_SOURCES): Remove gtod.h.
26         * gettimeofday.c: Don't include gtod.h.
27         (GTOD_init): Remove function.
28         (rpl_gettimeofday): Do its job here instead, rather than aborting.
29         Suggestion from Volker Borchert.
30
31 2001-11-23  Jim Meyering  <meyering@lucent.com>
32
33         * hash.h (struct hash_table): Don't define here.  Merely declare it.
34         * hash.c (struct hash_table): Define it here instead.
35
36 2001-11-22  Jim Meyering  <meyering@lucent.com>
37
38         * hash.h: Bracket contents of file with #ifndef HASH_H_ ... #endif.
39
40 2001-11-18  Paul Eggert  <eggert@twinsun.com>
41
42         * tempname.c (TMP_MAX): Remove; no longer needed.
43         (TEMPORARIES): New macro.
44         (__gen_tempname): Use TEMPORARIES rather than TMP_MAX.  This
45         removes an artificial limitation (e.g. HP-UX 10.20, where
46         TMP_MAX is 17576).
47
48 2001-11-18  Jim Meyering  <meyering@lucent.com>
49
50         * tempname.c [!HAVE_DECL_GETENV]: Declare getenv to avoid warning
51         on SunOS4.
52
53         * Makefile.am (Makefile): Depend on $(BUILT_SOURCES), so those
54         files will be created before anything else.
55
56 2001-11-17  Jim Meyering  <meyering@lucent.com>
57
58         * modechange.c (mode_adjust): Fix error introduced on 1999-04-26
59         that made e.g., `chmod a=,o=w,g=o F' cause F to be group readable
60         rather than group writable.  Patch by Juan F. Codagnone.
61
62         * readtokens.c: Remove explicit declarations of xmalloc and xrealloc,
63         Instead, include "xalloc.h".
64
65         * mountlist.c: Include unlocked-io.h after all system headers.
66         Remove explicit declarations of xmalloc, xrealloc,
67         and xstrdup.  Instead, include "xalloc.h".
68
69         * argmatch.c, closeout.c, error.c, exclude.c: Include unlocked-io.h.
70         * fatal.c, getdate.y, getpass.c, getstr.c, getusershell.c: Likewise.
71         * mountlist.c, posixtm.c, readtokens.c, readutmp.c: Likewise.
72
73         * regex.c, sha.c, version-etc.c, yesno.c: Likewise.
74         Reported by Padraig Brady.
75
76         * mkstemp.c: #undef mkstemp.
77         Include config.h.
78         (rpl_mkstemp): Rename from mkstemp.
79         Protoize.
80
81 2001-11-16  Jim Meyering  <meyering@lucent.com>
82
83         * physmem.c [HAVE_SYS_PSTAT_H]: Include <sys/pstat.h>.
84         (physmem_total) [HAVE_PSTAT_GETSTATIC]: If sysconf couldn't be used to
85         determine the amount of total physical memory, use pstat_getstatic.
86         HPUX-11 doesn't define _SC_PHYS_PAGES.
87         (physmem_available) [HAVE_PSTAT_GETSTATIC && HAVE_PSTAT_GETDYNAMIC]:
88         If sysconf couldn't be used to determine the amount of available
89         physical memory, use both pstat_getstatic and pstat_getdynamic.
90         Based on a patch from Bob Proulx.
91
92 2001-11-05  Jim Meyering  <meyering@lucent.com>
93
94         * xstat.in (slash_aware_lstat): Correct a misleading comment.
95
96 2001-11-03  Jim Meyering  <meyering@lucent.com>
97
98         * argmatch.h (ARGMATCH_TO_ARGUMENT): Remove casts of first two args
99         in argmatch_to_argument call.
100
101         * dirfd.c (dirfd): Reflect the fact that DIR_TO_FD now takes an
102         argument.
103
104         * hash.c (hash_clear): Fix a bug that could lead to an infloop or
105         e.g., a fault due to an attempt to free a NULL pointer.
106
107 2001-11-01  Jim Meyering  <meyering@lucent.com>
108
109         * dirfd.c, dirfd.h: New files.
110         * Makefile.am (libfetish_a_SOURCES): Add dirfd.h.
111
112         * hash.c (hash_print) [TESTING]: Clean up.
113
114 2001-10-22  Paul Eggert  <eggert@twinsun.com>
115
116         * hard-locale.c (alloca): Define to __builtin_alloca if __GNUC__,
117         to avoid a warning if -Wall.
118
119 2001-10-21  Paul Eggert  <eggert@twinsun.com>
120
121         * regex.c (uintptr_t): Remove macro and decl; it's config.h's job.
122
123 2001-10-21  Jim Meyering  <meyering@lucent.com>
124
125         * obstack.c (_): Honor the setting of ENABLE_NLS.  Otherwise,
126         this code would end up calling gettext even in packages built
127         with --disable-nls.
128         * getopt.c (_): Likewise.
129         * regex.c (_): Likewise.
130
131 2001-10-20  Paul Eggert  <eggert@twinsun.com>
132
133         * error.c (strerror_r): Do not declare unless !_LIBC.
134         Do not check for HAVE_DECL_STRERROR_R missing unless STRERROR_R_CHAR_P.
135         Use strerror_r that is only a macro, even if it is not a function.
136         (strerror): Check for HAVE_DECL_STRERROR before declaring.
137         (private_strerror): Use prototypes, not old-style function definition.
138         (print_errno_message): New function.
139         Support the POSIX 'int'-flavored strerror_r, as well as the traditional
140         char*-flavored one.
141         (error_tail, error, error_at_line): Use it.
142
143 2001-10-11  Jim Meyering  <meyering@lucent.com>
144
145         * argmatch.c (argmatch_invalid): Use quotearg_n_style (0, ...
146         and quote_n (1, ... to avoid clobbering a buffer.
147
148 2001-10-05  Jim Meyering  <meyering@lucent.com>
149
150         * Makefile.am: (libfetish_a_SOURCES): Add hash-pjw.c and hash-pjw.h.
151         * hash-pjw.c: New file (factored out of fileutils' remove.c).
152         * hash-pjw.h: New file.
153
154 2001-09-30  Jim Meyering  <meyering@lucent.com>
155
156         * mountlist.c [MOUNTED_GETFSSTAT]:
157         Include <sys/ucred.h>, for Apple Darwin.
158         Include sys/mount.h and sys/fs_types.h only if available.
159         (FS_TYPE): Define.
160         (read_filesystem_list): Use FS_TYPE.
161
162 2001-09-29  Paul Eggert  <eggert@twinsun.com>
163
164         * exclude.c (excluded_filename): 0 -> false, since it's
165         a boolean context.
166
167 2001-09-28  Paul Eggert  <eggert@twinsun.com>
168
169         Fix bug reported by Petter Reinholdtsen for HP-UX 10.20, which
170         #defines strtoimax.  Also treat the other strto* functions
171         like strtoimax.
172
173         * xstrtol.c (strtol): Do not declare if HAVE_DECL_STRTOL.
174         (strtoul): Do not declare if HAVE_DECL_STRTOUL.
175         (strtoimax, strtoumax): Do not declare if already defined as a macro.
176
177 2001-09-26  Jim Meyering  <meyering@lucent.com>
178
179         Most macros in unlocked-io.h had the wrong number of arguments.
180         * gen-uio: New script.
181         (USE_UNLOCKED_IO): Define to 1 if not already defined.
182         * unlocked-io.hin: Remove file.
183         * Makefile.am (unlocked-io.h): Rewrite to use a separate script,
184         rather than trying to embed it here.
185         (EXTRA_DIST): Add gen-uio.  Remove unlocked-io.hin
186         Reported by Padraig Brady.
187
188 2001-09-25  Volker Borchert  <bt@teknon.de>
189
190         * gettimeofday.c (rpl_gettimeofday): Declare local variable `result'.
191
192 2001-09-23  Jim Meyering  <meyering@lucent.com>
193
194         * mountlist.c: Remove useless parentheses in #if directives.
195         (MOUNTED) [!defined MOUNTED]: Define to _PATH_MOUNTED, for when
196         the deprecated MOUNTED symbol is no longer defined in mntent.h.
197
198 2001-09-22  Jim Meyering  <meyering@lucent.com>
199
200         * localcharset.c: Update from latest gettext.
201         * config.charset: Likewise.
202
203 2001-09-20  Jim Meyering  <meyering@lucent.com>
204
205         * xstrtol.c (strtoimax): Guard declaration with
206         `#if !HAVE_DECL_STRTOIMAX', rather than just `#ifndef strtoimax'.
207         The latter fails because some systems (at least rs6000-ibm-aix4.3.3.0)
208         have their own, conflicting declaration of strtoimax in sys/inttypes.h.
209         (strtoumax): Likewise, for completeness (it wasn't necessary).
210
211 2001-09-06  Paul Eggert  <eggert@twinsun.com>
212
213         * strtoimax.c (HAVE_LONG_LONG):
214         Redefine to HAVE_UNSIGNED_LONG_LONG if unsigned.
215         (strtoimax): Use sizeof (long), not sizeof strtol (ptr, endptr, base),
216         to work around bug in IBM C compiler.
217
218 2001-09-16  Jim Meyering  <meyering@lucent.com>
219
220         * mkdir.c: New file.
221
222 2001-09-04  Paul Eggert  <eggert@twinsun.com>
223
224         * xgetcwd.c: Revert some of the previous change; intead,
225         fix the HAVE_GETCWD_NULL code to behave more like the
226         !HAVE_GETCWD_NULL code used to.
227
228         Include "xalloc.h".
229         (xgetcwd): Do not return NULL when memory is exhausted; instead,
230         invoke xalloc_die.
231
232 2001-09-04  Paul Eggert  <eggert@twinsun.com>
233
234         * xreadlink.c (xreadlink): Omit size_t* arg.  All uses changed.
235         Use ssize_t, not int, to store result of readlink.
236         Check for ssize_t overflow as well as size_t overflow,
237         as POSIX says the result of readlink is implementation-defined
238         when ssize_t overflows.
239         Remove unnecessary cast to char*.
240         Use free+malloc instead of realloc, as the storage doesn't need
241         to be preserved and it's clearer and can be more efficient that way.
242         (SIZE_MAX, SSIZE_MAX): New macros, if <limits.h> doesn't declare.
243         * xreadlink.h (xreadlink): Update prototype.
244
245 2001-09-03  Paul Eggert  <eggert@twinsun.com>
246
247         * exclude.c (fnmatch_no_wildcards): Fix confusion between
248         usage of FNM_CASEFOLD and FNM_LEADING_DIR.  The bug was
249         spotted by Jim Meyering.
250
251 2001-09-03  Jim Meyering  <meyering@lucent.com>
252
253         * xreadlink.c (xreadlink): Preserve errno around `free' during failure.
254
255 2001-09-03  Paul Eggert  <eggert@twinsun.com>
256
257         * xgetcwd.c: Fix the !HAVE_GETCWD_NULL code to behave more
258         like the HAVE_GETCWD_NULL code.
259         Include pathmax.h if not HAVE_GETCWD.
260         Do not include xalloc.h.
261         (INITIAL_BUFFER_SIZE): New symbol.
262         Do not use xmalloc / xrealloc, since the caller is responsible for
263         handling errors.  Preserve errno around `free' during failure.
264         Do not overrun buffer when using getwd.
265
266 2001-09-03  Paul Eggert  <eggert@twinsun.com>
267
268         * xgetcwd.c (xgetcwd): Use HAVE_GETCWD_NULL, not (defined
269         __GLIBC__ && __GLIBC__ >= 2), to decide whether to use getcwd (NULL, 0).
270
271 2001-09-02  Jim Meyering  <meyering@lucent.com>
272
273         * error.c: Update from GNU libc.
274
275 2001-09-01  Jim Meyering  <meyering@lucent.com>
276
277         * xreadlink.c: New file.
278         * xreadlink.h: New file.
279         * Makefile.am (libfetish_a_SOURCES): Add xreadlink.c and xreadlink.h.
280
281         * regex.c (uintptr_t) [!_LIBC]: Define to private_uintptr_t, so it
282         doesn't conflict with sparc-sun-solaris2.7's definition in
283         /usr/include/sys/int_types.h.
284
285         * exclude.c: Use `""', not `<>' to #include non-system header files.
286         (fnmatch_no_wildcards): Rewrite not to use function names, strcasecmp
287         and strncasecmp as r-values.  Unixware didn't have declarations.
288
289 2001-08-31  Jim Meyering  <meyering@lucent.com>
290
291         * xgetcwd.c (xgetcwd): Reorganize to avoid some duplication.
292         Use an initial, malloc'd, buffer of length 128 rather than
293         a statically allocated one of length 1024.
294
295 2001-08-30  Paul Eggert  <eggert@twinsun.com>
296
297         * xgetcwd.c: Don't include pathmax.h.
298         Include stdlib.h and unistd.h if available.
299         Include xalloc.h.
300         (xmalloc, xstrdup, free): Remove decls.
301         (xgetcwd): Don't assume sizes fit in unsigned.
302         Check for overflow when computing sizes.
303         Simplify reallocation code.
304
305 2001-08-28  Paul Eggert  <eggert@twinsun.com>
306
307         * Makefile.am (libfetish_a_SOURCES): Remove strtoxmax.c.
308
309         * strtoimax.c: Renamed from strtoxmax.c, removing the
310         old strtoimax.c.
311
312         Also, make the following further changes to make this file's
313         configuration more similar to that of strtol.c:
314         (UNSIGNED): Renamed from STRTOUXMAX_UNSIGNED.  All uses changed.
315         (strtoumax, uintmax_t, strtoull, strtol): Remove.
316         (intmax_t, strtoimax, strtol, strtoll): New macros, if UNSIGNED.
317         (strtoimax): Renamed from strtoumax.  All uses of unsigned values
318         changed to signed values.
319
320         And make the following changes as well:
321         Fix copyright notice, as 1999 was missing.
322         (verify): New macro.
323         (strtoimax): Check sizes at compile-time, not run-time.
324         Prefer strtol to strtoll if both work.
325         (main): Remove; it was not that useful and was a pain to maintain.
326
327         * strtoumax.c: Include strtoimax.c, not strtouxmax.c.
328
329 2001-08-30  Paul Eggert  <eggert@twinsun.com>
330
331         * savedir.c (savedir): Remove size parameter, as POSIX says that
332         a directory's st_size can have an arbitrary value, so the old
333         usage could waste an arbitrary amount of memory.  All uses
334         changed.
335         * savedir.h: Update prototype.
336
337 2001-08-30  Paul Eggert  <eggert@twinsun.com>
338
339         * xstrtol.c (strtoimax): New decl.
340
341 2001-08-28  Paul Eggert  <eggert@twinsun.com>
342
343         * xstrtol.h: Add copyright notice.
344         (_DECLARE_XSTRTOL): Improve quality of diagnostic for
345         LONGINT_INVALID_SUFFIX_CHAR.
346
347 2001-08-30  Paul Eggert  <eggert@twinsun.com>
348
349         * quotearg.c: BSD/OS 4.1 wchar.h requires FILE and struct
350         tm to be declared.
351
352 2001-08-30  Paul Eggert  <eggert@twinsun.com>
353
354         * hash.c: Remove '2001' from copyright notice.
355
356 2001-08-30  Paul Eggert  <eggert@twinsun.com>
357
358         * full-write.h: New file.
359         * Makefile.am (libfetish_a_SOURCES): Add full-write.h.
360         * full-write.c: Correct credits, as cccp.c no longer
361         exists and anyway it was so heavily changed from the old cccp
362         code as to be unrecognizable.  Include full-write.h.
363         (full_write) Return size_t, with short writes meaning failure.
364         All callers changed.  This fixes a bug with large buffers
365         on 64-bit hosts.
366         * utime.c: Include full-write.h.
367
368 2001-08-30  Paul Eggert  <eggert@twinsun.com>
369
370         Merge 'exclude' changes from tar 1.13.22.
371         This fixes one or two unlikely storage allocation overflow bugs,
372         but doesn't change user-visible behavior otherwise.
373
374 2001-08-30  Paul Eggert  <eggert@twinsun.com>
375
376         * exclude.c (bool): Declare, perhaps by including stdbool.h.
377         (<sys/types.h>): Include only if HAVE_SYS_TYPES_H.
378         (<stdlib.h>, <string.h>, <strings.h>, <inttypes.h>, <stdint.h>):
379         Include if available.
380         (<xalloc.h>): Include
381         (SIZE_MAX): Define if <stdint.h> or <inttypes.h> doesn't.
382         (verify): New macro.  Use it to verify that EXCLUDE macros do not
383         collide with FNM macros.
384         (struct patopts): New struct.
385         (struct exclude): Use it, as exclude patterns now come with options.
386         (new_exclude): Support above changes.
387         (new_exclude, add_exclude_file):
388         Initial size must now be a power of two to simplify overflow checking.
389         (free_exclude, fnmatch_no_wildcards): New function.
390         (excluded_filename): No longer requires options arg, as the options
391         are determined by add_exclude.  Now returns bool, not int.
392         (excluded_filename, add_exclude):
393         Add support for the fancy new exclusion options.
394         (add_exclude, add_exclude_file): Now takes int options arg.
395         Check for arithmetic overflow when computing sizes.
396         (add_exclude_file): xrealloc might modify errno, so don't
397         realloc until after errno might be used.
398
399         * exclude.h (EXCLUDE_ANCHORED, EXCLUDE_INCLUDE,EXCLUDE_WILDCARDS):
400         New macros.
401         (free_exclude): New decl.
402         (add_exclude, add_exclude_file): Now takes int options arg.
403         (excluded_filename): No longer requires options arg, as the options
404         are determined by add_exclude.  Now returns bool, not int.
405
406 2001-08-30  Paul Eggert  <eggert@twinsun.com>
407
408         * alloca.c (alloca): Arg is of type size_t, not unsigned.
409
410 2001-08-27  Jim Meyering  <meyering@lucent.com>
411
412         * Makefile.am (libfetish_a_SOURCES): Add strtoxmax.c
413
414         * version-etc.c (N_): Remove definition.
415         Revert most of last change.
416         Instead, simply don't mark the `Copyright...' string for translation.
417         Based on advice from Paul Eggert.
418
419         * strtoxmax.c: Tweak comment.
420
421 2001-08-26  Jim Meyering  <meyering@lucent.com>
422
423         * version-etc.c (version_etc_copyright_fmt): Replace literal year
424         of copyright with `%s' so translators don't get an untranslated
425         message in 2002.
426         (COPYRIGHT_YEAR): Define.
427         (version_etc): Use fprintf rather than fputs.
428         Suggestion from Ulrich Drepper.
429
430         * Makefile.am (libfetish_a_SOURCES): Add xstrtoimax.c.
431
432         * strtoll.c: New file, from GNU libc.
433         * xstrtoimax.c: New file.
434
435         * xstrtol.h: Add xstrtoimax.
436         * strtoumax.c: New file.  Simply include "strtoumax.c".
437         * strtoimax.c: New file.  Likewise, but first define STRTOUXMAX_SIGNED.
438
439         * strtoumax.c: Factor to work both for unsigned and signed types, ...
440         * strtoxmax.c: ... then renamed to this.
441
442 2001-08-13  Paul Eggert  <eggert@twinsun.com>
443
444         * Makefile.am (unlocked-io.h): Do not append "_unlocked" twice.
445         Port to Solaris 8, where 'sed' requires a space after the 'r'
446         command, and where sh dislikes "$/".  Clean up the spacing a bit.
447         Redirect output to $tmp just once.
448
449 2001-08-12  Paul Eggert  <eggert@sic.twinsun.com>
450
451         * addext.c (<errno.h>): Include.
452         (errno): Declare if not defined.
453         (addext): Work correctly when pathconf returns -1 and leaves
454         errno alone because there is no limit.  Also, work even if
455         pathconf returns a value greater than SIZE_MAX.
456
457 2001-08-12  Jim Meyering  <meyering@lucent.com>
458
459         * xgetcwd.c (xgetcwd) [defined __GLIBC__ && __GLIBC__ >= 2]:
460         Simply `return getcwd (NULL, 0);'.
461         [! (defined __GLIBC__ && __GLIBC__ >= 2)]:
462         Use 1300 as initial value for length, not PATH_MAX.
463
464         * pathmax.h: Clean up cpp syntax.
465
466 2001-08-12  Jim Meyering  <meyering@lucent.com>
467
468         * gettimeofday.c: New file.
469         * gtod.h: New file.
470         * Makefile.am (libfetish_a_SOURCES): Add gtod.h.
471
472 2001-08-04  Jim Meyering  <meyering@lucent.com>
473
474         * error.h (__attribute__): Remove `|| __STRICT_ANSI__' from #if stmt,
475         to get in sync with glibc.
476
477 2001-08-03  Paul Eggert  <eggert@twinsun.com>
478
479         The following changes are from gettext 0.10.39 as maintained by
480         Bruno Haible.
481
482         * mbswidth.h (MBSW_REJECT_UNPRINTABLE, MBSW_REJECT_INVALID):
483         Renamed from MBSW_ACCEPT_UNPRINTABLE and MBSW_ACCEPT_INVALID
484         with inverted sense.  All uses changed.
485
486         * mbswidth.c: Don't include <limits.h>.
487         Include <stdlib.h> and <string.h> unconditionally.
488         (iswcntrl, mbsinit, ISCNTRL): New macros.
489         (mbsnwidth): Use K&R style function declarations.
490         Don't bother checking for MB_LEN_MAX == 1, since the compiler
491         can optimize it when MB_CUR_MAX == 1.
492         The width of control characters is zero, not 1.
493
494 2001-07-15  Jim Meyering  <meyering@lucent.com>
495
496         * Makefile.am (EXTRA_DIST): Add unlocked-io.hin.
497         (BUILT_SOURCES): Add unlocked-io.h.
498         (io_functions): Define.
499         (unlocked-io.h): New rule.
500         (DISTCLEANFILES): Add unlocked-io.h.
501         (all-local): Depend on unlocked-io.h, to ensure it is created.
502
503         * unlocked-io.hin: New file
504
505         * regex.c: Update from glibc.
506
507 2001-07-05  Jim Meyering  <meyering@lucent.com>
508
509         * Makefile.am (noinst_HEADERS): Remove definition, per new automake
510         recommendation.
511         (libfetish_a_SOURCES): Put all .h files here instead.
512         Remove a thus-exposed (better checks in automake) duplicate and
513         two unnecessary .h files.
514
515 2001-06-11  Jim Meyering  <meyering@lucent.com>
516
517         * regex.c: Update from GNU libc.
518
519 2001-05-27  Jim Meyering  <meyering@lucent.com>
520
521         * readutmp.h (UT_TYPE): Define.
522
523 2001-05-24  Jim Meyering  <meyering@lucent.com>
524
525         * argmatch.c: Include "quote.h".
526         (argmatch_invalid): Remove explicit `' quotes.  Instead, use the
527         quote function.  Reported by Göran Uddeborg.
528
529 2001-05-20  Alexandre Duret-Lutz  <duret_g@epita.fr>
530
531         * dirname.c (dir_name): Compute append_dot using path, not newpath
532         which is not yet declared.
533
534 2001-05-11  Paul Eggert  <eggert@twinsun.com>
535
536         * Makefile.am (libfetish_a_SOURCES):
537         Add strftime.c, since we now compile it on all hosts.
538
539         * strftime.c (my_strftime):
540         Define to nstrftime if emacs, but only if my_strftime is not defined.
541         (extra_args, extra_args_spec, extra_args_spec_iso): Rename from
542         ut_argument, ut_argument_spec, ut_argument_spec_iso, respectively.
543         Add one more extra argument: a nanoseconds value.
544         All uses changed.
545         (ns): New macro.
546         (my_strftime function): Add %N format.
547         (emacs_strftimeu): Renamed from emacs_strftime,
548         with extra ut argument.
549
550 2001-05-11  Paul Eggert  <eggert@twinsun.com>
551
552         dirname code cleanup.  base_name now behaves more compatibly
553         with POSIX basename when given file names that have trailing
554         slashes, and similarly for dir_name.  Add new primitives
555         base_len and dir_len.  Put the directory-name-related decls
556         into dirname.h.
557
558         * addext.c (ISSLASH, base_name): Remove; now in dirname.h.
559         * backupfile.c (base_name): Likewise.
560         * basename.c (FILESYSTEM_PREFIX_LEN, PARAMS, ISSLASH): Likewise.
561         * dirname.c (FILESYSTEM_PREFIX_LEN, ISSLASH): Likewise.
562         * makepath.c (strip_trailing_slashes): Likewise.
563         * path-concat.c (DIRECTORY_SEPARATOR, FILESYSTEM_PREFIX_LEN, ISSLASH):
564         Likewise.
565         * rename.c (strip_trailing_slashes): Likewise.
566         * same.c (base_name): Likewise.
567         * stripslash.c (ISSLASH): Likewise.
568
569         * addext.c: Include <dirname.h> after size_t is defined.
570         * backupfile.c: Likewise.
571
572         * addext.c (addext): Use base_len to trim redundant
573         trailing slashes instead of doing it ourselves.
574         But do not trim the last slash if it is not redundant.
575
576         * backupfile.c (find_backup_file_name,
577         max_backup_version): Use base_len instead of rolling it ourselves.
578         Handle the case of "" and (on DOS) "C:" correctly.
579
580         * basename.c: Do not include <stdio.h>, <assert.h>; no longer needed.
581         Include <string.h>, <dirname.h>.
582         (base_name): Allow file names ending in slashes, other than names
583         that are all slashes.  In this case, return the basename followed
584         by the slashes.  This is more general, and can be used in places
585         where the original base_name purposely had an assertion failure.
586         (base_len): New function.
587
588         * dirname.c: Include <string.h> instead of <stdlib.h>.
589         Do not include <assert.h>; no longer needed.
590         Include xalloc.h.
591         (memrchr): Remove decl.
592         (dir_name_r): Remove.
593         (dir_len): Renamed from dirlen.  All callers changed.
594         Rewrite in terms of base_name, for simplicity and consistency.
595         (dir_name): Never return NULL.  All callers changed.
596         Do not include <stdlib.h> in test program; no longer needed.
597         return 0; is fine for test program.
598
599         * dirname.h (DIRECTORY_SEPARATOR, ISSLASH, FILESYSTEM_PREFIX_LEN):
600         New macros.
601         (base_name, base_len, dir_len, strip_trailing_slashes): New decls.
602
603         * path-concat.c (path_concat): Use base_len to compute
604         base length, not strlen; this means we cannot rely on memcpy
605         to null-terminate.
606
607         * same.c (STREQ): Remove.
608         (same_name): Handle the case where the basename ends in trailing '/'.
609
610         * stripslash.c (strip_trailing_slashes): Return nonzero if
611         a slash was stripped.  Do not strip the last slash after a
612         file system prefix.
613
614 2001-04-08  Jim Meyering  <meyering@lucent.com>
615
616         * getdate.y (get_date): Set tm_isdst to -1 to ensure that it is
617         recomputed; that's necessary when the offset spans a DST transition.
618         Patch by David J. MacKenzie.  Reported by Hon-Yin Kok.
619
620 2001-04-02  Jim Meyering  <meyering@lucent.com>
621
622         * regex.h, regex.c: Update from GNU libc.
623
624 2001-03-19  Paul Eggert  <eggert@twinsun.com>
625
626         * version-etc.c (version_etc_copyright): Update to 2001.
627
628 2001-03-16  Paul Eggert  <eggert@twinsun.com>
629
630         * tempname.c (uint64_t): Define to uintmax_t if
631         not defined, and if UINT64_MAX is not defined.
632         Required at least for Vax Ultrix4.3, which doesn't define uint64_t.
633         Reported by John David Anglin.
634
635 2001-03-10  Bruno Haible  <haible@clisp.cons.org>
636
637         * localcharset.c (locale_charset): Allow wildcard syntax. Also resolve
638         alias if codeset is empty.
639         * config.charset (BeOS): Use wildcard syntax.
640
641 2001-03-13  Jim Meyering  <meyering@lucent.com>
642
643         * path-concat.c (path_concat) [FILESYSTEM_ACCEPTS_DRIVE_LETTER_PREFIX]:
644         Don't insert a backslash when concatenating e.g., `C:' and `foo'.
645         From Bruno Haible.
646
647 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
648
649         * localcharset.c (locale_charset): Don't use setlocale(LC_CTYPE,NULL).
650         Don't return NULL.
651         * unicodeio.c (print_unicode_char): Simplify accordingly.
652
653 2001-03-06  Bruno Haible  <haible@clisp.cons.org>
654
655         * config.charset: Update for FreeBSD 4.2 and OSF/1 5.1. Add
656         support for DOS/DJGPP.
657
658 2001-02-28  Paul Eggert  <eggert@twinsun.com>
659
660         * Makefile.am (libfetish_a_SOURCES):
661         Add dup-safer.c, fopen-safer.c.
662         (noinst_HEADERS): Add stdio-safer.h, unistd-safer.h.
663
664         * dup-safer.c, fopen-safer.c, stdio-safer.h, unistd-safer.h: New files.
665
666 2001-02-25  Paul Eggert  <eggert@twinsun.com>
667
668         The mkstemp replacement is taken from glibc 2.2.2, with some
669         portability fixes for use outside glibc, as follows:
670
671         * tempname.c (struct_stat64): New macro.
672         (direxists, __gen_tempname): Use it.
673         This avoids a portability problem with Solaris 8.
674
675         * tempname.c (<config.h>): Include if HAVE_CONFIG_H.
676         (<stddef.h>, <stdint.h>, <string.h>):
677         Include only if STDC_HEADERS || _LIBC.
678         (<fcntl.h>): Include only if HAVE_FCNTL_H || _LIBC.
679         (<unistd.h>): Include only if HAVE_UNISTD_H || _LIBC.
680         (<sys/time.h>): Include only if HAVE_SYS_TIME_H || _LIBC.
681         (__set_errno): Define this macro if <errno.h> doesn't.
682         (P_tmpdir, TMP_MAX, __GT_FILE, __GT_BIGFILE, __GT_DIR, __GT_NOCREATE):
683         Define these macros if <stdio.h> doesn't.
684         (S_ISDIR, S_IRUSR, S_IWUSR, S_IXUSR):
685         Define these macros if <sys/stat.h>
686         doesn't.  Ignore <sys/stat.h> S_ISDIR if STAT_MACROS_BROKEN.
687         (stat64, __getpid, __gettimeofday, __mkdir, __open, __open64, lxstat64,
688         __xstat64): Define if not _LIBC.
689         (__secure_getenv): Define if ! (HAVE___SECURE_GETENV || _LIBC).
690         (__gen_tempname): Invoke gettimeofday only if
691         HAVE_GETTIMEOFDAY || _LIBC;
692         otherwise, fall back on plain "time".
693         Use macros like S_IRUSR | S_IWUSR rather than octal values like 0600.
694
695         * mkstemp.c (__GT_FILE): Define to zero if not defined.
696
697         * mkstemp.c, tempname.c: New files, taken from glibc 2.2.2.
698
699 2001-02-17  Jim Meyering  <meyering@lucent.com>
700
701         * strtoul.c: Sync from GNU libc.  Use double quotes, not <...>
702         around included file name.
703
704         * strnlen.c (__strnlen): Merge in a change from GNU libc.
705
706         * strftime.c: Update from GNU libc (the only changes were to comments).
707
708 2001-02-13  Bruno Haible  <haible@clisp.cons.org>
709
710         * mbswidth.h (mbswidth): Also define as macro, to avoid prototype clash.
711
712 2001-02-17  Paul Eggert  <eggert@twinsun.com>
713
714         * mbswidth.c, quotearg.c (mbrtowc, mbsinit):
715         Remove workaround macros for hosts that have mbrtowc but not
716         mbstate_t, as we now insist on proper declarations for both
717         before using mbrtowc.
718
719 2001-02-17  Jim Meyering  <meyering@lucent.com>
720
721         * regex.c: Update from libc.
722
723 2001-02-16  Paul Eggert  <eggert@twinsun.com>
724
725         * alloca.c (malloc): Undef before defining, since stdlib.h
726         may have defined it.  Needed for Encore Umax-3.0.9.16b systems.
727         Reported by Mark Hounschell via Paul Eggert.
728
729 2001-01-30  Bruno Haible  <haible@clisp.cons.org>
730
731         * config.charset: Update for FreeBSD 4.2.
732
733 2001-01-26  Jim Meyering  <meyering@lucent.com>
734
735         * quotearg.c: Include stddef.h.
736         * quote.c: Include stddef.h.
737         Reported by Axel Kittenberger.
738
739         * xmalloc.c [HAVE_DONE_WORKING_MALLOC_CHECK]: Enclose error-evoking
740         line in double quotes so that it evokes a better diagnostic.
741         [HAVE_DONE_WORKING_REALLOC_CHECK]: Likewise.
742         Reported by Axel Kittenberger.
743
744 2001-01-15  Bruno Haible  <haible@clisp.cons.org>
745
746         * unicodeio.c (print_unicode_char): Cast the second iconv() arg,
747         to avoid a warning.  Add back 'const' to inptr.
748
749 2001-01-16  Jim Meyering  <meyering@lucent.com>
750
751         * basename.c: Include <stdio.h>, needed by assert on SunOS4.
752         From Bruno Haible.
753
754 2001-01-14  Jim Meyering  <meyering@lucent.com>
755
756         * rename.c: New file.  From Volker Borchert.
757         Include stdlib.h, string.h or strings.h, and xalloc.h.
758         Use strip_trailing_slashes rather than open-coding it.
759
760 2001-01-03  Paul Eggert  <eggert@twinsun.com>
761
762         * strftime.c: Sync with glibc time/strftime.c 1.81.
763
764 2001-01-03  Jim Meyering  <meyering@lucent.com>
765
766         * unicodeio.c (print_unicode_char): Remove `const' from declaration of
767         local `inptr' to avoid warning with some system declarations of iconv.
768
769 2000-12-29  Paul Eggert  <eggert@twinsun.com>
770
771         * modechange.c: Do not assume that mode_t uses the
772         traditional octal encoding.  E.g. "chmod 1 FOO" should set
773         the other-execute bit of FOO even if S_IXOTH != 1.
774
775         (SUID, SGID, SVTX, RUSR, WUSR, XUSR, RGRP, WGRP, XGRP, ROTH,
776         WOTH, XOTH, ALLM): New macros.
777         (S_ISUID, S_ISGID, S_ISVTX, S_IRUSR, S_IWUSR, S_IXUSR,
778          S_IRGRP, S_IWGRP, S_IXGRP, S_IROTH, S_IWOTH, S_IXOTH):
779         Use them.
780         (S_ISGID): Fix typo; it was defaulting to the same value as S_ISUID.
781         (S_IRWXU, S_IRWXG, S_IRWXO): Specify defaults in terms of the above.
782         (mode_compile):
783         No need to use uintmax_t; unsigned long is long enough.
784         Don't bother to get suffix since we don't use it.
785
786 2000-12-24  Jim Meyering  <meyering@lucent.com>
787
788         * hash.c (is_prime): Return explicit boolean values.
789         (hash_get_first): Return NULL to appease Irix5.6's 89.
790         Reported by Nelson Beebe.
791
792 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
793
794         * localcharset.c (locale_charset): Add support for Win32.
795
796 2000-12-18  Paul Eggert  <eggert@twinsun.com>
797
798         * physmem.h, physmem.c: New files.
799
800         * Makefile.am (libfetish_a_SOURCES): Add physmem.c.
801         (noinst_HEADERS): Add physmem.h.
802
803         * xstrtol.c (__xstrtol): Add undocumented suffixes 'g' and
804         't' for compatibility with Solaris 8 sort.
805
806 2000-12-18  Bruno Haible  <haible@clisp.cons.org>
807
808         * config.charset: Add support for BeOS.
809
810 2000-12-16  Jim Meyering  <meyering@lucent.com>
811
812         * getusershell.c [!SHELLS_FILE && __DJGPP__]: Define
813         SHELLS_FILE to a file name that's useful on djgpp systems.
814         Include stdlib.h.
815         (ADDITIONAL_DEFAULT_SHELLS): Define.
816         (default_shells): Prepend ADDITIONAL_DEFAULT_SHELLS.
817         Based mostly on a patch from Prashant TR.
818
819 2000-12-16  Jim Meyering  <meyering@lucent.com>
820
821         This bug had a serious impact on chown: `chown N:M FILE' (for integer
822         N and M) would have treated it like `chown N:N FILE'.
823
824         * userspec.c (parse_user_spec): Fix typo: s/u/g/.
825
826 2000-10-31  Bruno Haible  <haible@clisp.cons.org>
827
828         * config.charset: Add ISO-8859-3, BIG5HKSCS, GB18030, JOHAB, VISCII,
829         CP874, CP949, CP950, CP1250, CP1253, CP1254, CP1255, CP1256, CP1257
830         to the list of canonical encodings. Rename EUC-CN to GB2312.
831
832 2000-12-08  Andreas Schwab  <schwab@suse.de>
833
834         * mbswidth.c (mbsnwidth): Don't loop endlessly when called with an
835         invalid mulitbyte sequence and with the MBSW_ACCEPT_INVALID flag set.
836
837 2000-12-07  Jim Meyering  <meyering@lucent.com>
838
839         * stripslash.c (ISSLASH): Define.
840         (strip_trailing_slashes): Use ISSLASH rather than comparing against `/'.
841         From Prashant TR.
842
843         * dirname.c (FILESYSTEM_PREFIX_LEN): Define.
844         (dir_name_r): Declare this function as static.
845         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
846         manifest itself on a name containing a mix of slashes and
847         backslashes.
848         Make this function work with names starting with a DOS-style
849         drive letter and colon prefix.
850         (dir_name): Append `.' if necessary.
851         Based mostly on patches from Prashant TR and Eli Zaretskii.
852
853         * dirname.h (dir_name_r): Remove prototype.
854
855 2000-12-05  Jim Meyering  <meyering@lucent.com>
856
857         * dirname.c (dir_name_r): Add `const' in a few local declarations.
858
859 2000-12-04  Jim Meyering  <meyering@lucent.com>
860
861         * path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
862         Also include memory.h, stdlib.h, unistd.h if appropriate.
863         Reported by Andreas Jaeger (conflicting declaration of malloc).
864
865 2000-12-02  Jim Meyering  <meyering@lucent.com>
866
867         * closeout.h: Make idempotent, to avoid some obscure warnings.
868
869 2000-12-01  Paul Eggert  <eggert@twinsun.com>
870
871         * memrchr.c: Include <config.h> before any system include file.
872
873 2000-11-29  Paul Eggert  <eggert@twinsun.com>
874
875         * dirname.c (dir_name_r): Fix typo: int -> size_t.
876
877 2000-11-26  Jim Meyering  <meyering@lucent.com>
878
879         * memcoll.c: Include sys/types.h.  From Werner Almesberger.
880
881 2000-11-22  Paul Eggert  <eggert@twinsun.com>
882
883         * strftime.c (my_strftime): Do not invoke mbrlen with a
884         size of (size_t) -1; it's not portable.
885
886 2000-11-17  Akim Demaille  <akim@epita.fr>
887
888         * obstack.h: Formatting changes.
889         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
890         prevent type checking.
891         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
892         cast the value to (void *): assigning a `foo *' to a `void *'
893         variable is valid.
894         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
895
896 2000-11-17  Jim Meyering  <meyering@lucent.com>
897
898         * strstr.c: Update from GNU libc.
899
900 2000-11-16  Jim Meyering  <meyering@lucent.com>
901
902         * strverscmp.c: Incorporate weak-alias-related changes from glibc.
903
904 2000-11-11  Jim Meyering  <meyering@lucent.com>
905
906         * error.c: Add a couple #includes, merging from GNU libc version.
907
908 2000-11-10  Jim Meyering  <meyering@lucent.com>
909
910         * obstack.h: Update from GNU libc.
911         * obstack.c: Likewise.
912
913 2000-11-06  Paul Eggert  <eggert@twinsun.com>
914
915         * getusershell.c (setusershell): Use rewind rather than
916         fseek/fseeko, to avoid configuration hassles with fseeko.
917         Don't bother opening SHELLS_FILE if shellstream is NULL;
918         it's not necessary.
919
920 2000-11-05  Jim Meyering  <meyering@lucent.com>
921
922         * makepath.h (make_dir): Declare.
923         * makepath.c (make_dir): Remove `static' attribute.
924         Tweak a comment.
925
926 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
927
928         * hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
929         last one in a bucket, advance to the next bucket.
930
931 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
932
933         * fnmatch.c: Do not comment out all the code if we are using
934         the GNU C library, because in some cases we are replacing buggy
935         code in the GNU C library itself.
936
937 2000-10-30  Paul Eggert  <eggert@twinsun.com>
938
939         * error.h, getline.h, modechange.h:
940         Remove "2000" from Copyright line, as the file hasn't been
941         changed this year other than in the copyright notice.
942
943         * xalloc.h: Add "2000" to Copyright line, as this file
944         was changed this year.
945
946 2000-10-30  Paul Eggert  <eggert@twinsun.com>
947
948         * fnmatch.c (FOLD): Do not assume that characters are unsigned.
949         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
950         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
951
952 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
953
954         * regex.h (__restrict_arr): Move definition out of #ifndef block.
955         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
956         doesn't define __restrict_arr.
957
958 2000-10-29  Jim Meyering  <meyering@lucent.com>
959
960         * xstat.in: Fix grammar in comment.
961
962 2000-10-28  Jim Meyering  <meyering@lucent.com>
963
964         * memchr.c: Update from libc.
965         Adjust for portability:
966         [HAVE_STDLIB_H]: Include stdlib.h.
967         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
968         Undef __memchr, too.
969         [!weak_alias]: Define __memchr to memchr.
970
971         * regex.c: Update from libc.
972         * regex.h: Likewise.
973         * getopt1.c: Likewise.
974         * memcmp.c: Likewise.
975
976         * getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
977         Avoid using fseek, when possible -- it's broken by design.
978         Patch by Ulrich Drepper.
979
980 2000-10-26  Jim Meyering  <meyering@lucent.com>
981
982         * strftime.c: Update from libc.
983
984 2000-10-25  Jim Meyering  <meyering@lucent.com>
985
986         * obstack.c: Update from libc.
987
988 2000-10-23  Jim Meyering  <meyering@lucent.com>
989
990         * hard-locale.c (hard_locale): Revert last change -- it was simply
991         wrong.  That set_locale call must not have any side effects.
992         From Paul Eggert.
993
994 2000-10-22  Jim Meyering  <meyering@lucent.com>
995
996         * md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
997         [CYCLIC]: Remove now-unused definition.
998
999         * save-cwd.c (O_DIRECTORY): Define, if needed.
1000         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
1001         Suggestion from Ulrich Drepper.
1002
1003 2000-10-21  Jim Meyering  <meyering@lucent.com>
1004
1005         * dirname.c (dir_name_r): New function, factored out of dir_name.
1006         (dir_name): Use dir_name_r.
1007         * dirname.h (dir_name_r): Declare it.
1008
1009 2000-10-21  Jim Meyering  <meyering@lucent.com>
1010
1011         * dirname.c (memrchr): Declare if necessary.
1012         (dir_name): Remove the restriction that there be no
1013         trailing slashes.  Now, this code skips past them, effectively
1014         ignoring them.
1015         [TEST_DIRNAME] (main): New unit tests.
1016
1017         * memrchr.c: New file from GNU libc.
1018         Undef __memrchr, too.
1019         [!weak_alias]: Define __memrchr to memrchr.
1020         Guard weak_alias use with `#ifdef weak_alias'.
1021
1022 2000-10-17  Jim Meyering  <meyering@lucent.com>
1023
1024         * quote.h (PARAMS): Define and use.
1025         Reported by Akim Demaille.
1026
1027         * getopt.c: Update from libc.
1028
1029 2000-10-16  Jim Meyering  <meyering@lucent.com>
1030
1031         * hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to setlocale.
1032         From Jan Fedak.
1033
1034 2000-09-25  Jim Meyering  <meyering@lucent.com>
1035
1036         * md5.h (rol): Define (from GnuPG).
1037
1038         * sha.c: Give credit (GnuPG) where due.
1039         (M): Use rol rather than open-coding it.
1040         Add a FIXME comment.
1041
1042 2000-09-21  Jim Meyering  <meyering@lucent.com>
1043
1044         * userspec.c (parse_user_spec): Remove debugging printf I'd added.
1045         Reported by Michael Stone.
1046
1047 2000-09-20  Jim Meyering  <meyering@lucent.com>
1048
1049         * Makefile.am (libfetish_a_SOURCES): Add sha.c.
1050         (noinst_HEADERS): Add sha.h.
1051         Based on code from Scott G. Miller and from GnuPG.
1052
1053 2000-09-15  Jim Meyering  <meyering@lucent.com>
1054
1055         * regex.c: Update from libc.
1056
1057 2000-09-10  Jim Meyering  <meyering@lucent.com>
1058
1059         * getopt.c (_getopt_internal): Update from glibc.
1060
1061 2000-09-09  Jim Meyering  <meyering@lucent.com>
1062
1063         * quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
1064         think it should be used as a general replacement for isascii.
1065         * fnmatch.c: Likewise.
1066         * mbswidth.c: Likewise
1067         * regex.c: Likewise.
1068
1069         Don't use atoi.
1070         * userspec.c: Include sys/param.h and limits.h.
1071         Include xstrtol.h.
1072         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
1073         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
1074         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
1075         UID, GID.  Check range.
1076
1077 2000-09-06  Jim Meyering  <meyering@lucent.com>
1078
1079         * getopt.c (_getopt_internal): Update from glibc.
1080
1081 2000-08-30  Jim Meyering  <meyering@lucent.com>
1082
1083         * strftime.c: Merge in changes from GNU libc.
1084
1085 2000-08-26  Jim Meyering  <meyering@lucent.com>
1086
1087         * closeout.c: Include "__fpending.h".
1088         (close_stdout_status): Return right away if there's nothing to flush.
1089
1090         * Makefile.am (noinst_HEADERS): Add __fpending.h.
1091         * __fpending.c: New file.
1092         * __fpending.h: New file.
1093
1094 2000-08-07  Paul Eggert  <eggert@twinsun.com>
1095
1096         Standardize on "memory exhausted" instead of "Memory exhausted"
1097         or "virtual memory exhausted".
1098         * obstack.c (print_and_abort): Use "memory exhausted", not
1099         "virtual memory exhausted".
1100         * same.c (same_name): Invoke xalloc_die instead of printing
1101         our own message.
1102         * userspec.c (parse_user_spec): Likewise.
1103         * bumpalloc.h: comment fix
1104         * same.c, userspec.c: Include xalloc.h.
1105
1106         * xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
1107         not char *const and pointing to a constant array.
1108         * xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
1109         (xrealloc): Comment fix.
1110
1111         * userspec.c (parse_user_spec):
1112         Don't translate a message until just before returning,
1113         to avoid unnecessary translation.
1114
1115 2000-08-07  Jim Meyering  <meyering@lucent.com>
1116
1117         * addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
1118         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
1119         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
1120         getgroups.c, gethostname.c, getopt.h, group-member.c,
1121         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
1122         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
1123         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
1124         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
1125         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
1126         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
1127         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
1128         yesno.c: Back out Copyright date changes for each file with no change
1129         this year.  This eases coordination with other programs using the same
1130         source code modules.  From Paul Eggert.
1131
1132 2000-08-03  Greg McGary  <greg@mcgary.org>
1133
1134         * regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
1135         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
1136         (EXTEND_BUFFER): Use them.
1137
1138 2000-08-01  Jim Meyering  <meyering@lucent.com>
1139
1140         * dirname.c (ISSLASH): Define.
1141         (BACKSLASH_IS_PATH_SEPARATOR): Define.
1142         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
1143         both `\' and `/' may be use as path separators.
1144         Based on a patch from Prashant TR.
1145
1146 2000-07-31  Paul Eggert  <eggert@twinsun.com>
1147
1148         * quotearg.c (quotearg_n_options): Don't make the initial
1149         slot vector a constant, since it might get modified.
1150
1151 2000-07-31  Jim Meyering  <meyering@lucent.com>
1152
1153         * xmalloc.c: Use `virtual memory exhausted', not `Memory exhausted'.
1154         * obstack.c (print_and_abort): Likewise.
1155
1156 2000-07-30  Paul Eggert  <eggert@twinsun.com>
1157
1158         * quotearg.c (quotearg_n_options): Preallocate a slot 0
1159         buffer, so that the caller can always quote one small
1160         component of a "memory exhausted" message in slot 0.
1161         From a suggestion by Jim Meyering.
1162
1163 2000-07-30  Jim Meyering  <meyering@lucent.com>
1164
1165         * makepath.c (make_path): Quote the other instance, too.
1166
1167         * quotearg.c (N_STATIC_SLOTVECS): Define.
1168         (STATIC_BUF_SIZE): Define.
1169         (quotearg_n_options): Use only statically allocated storage when
1170         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
1171         than STATIC_BUF_SIZE.
1172
1173 2000-07-29  Jim Meyering  <meyering@lucent.com>
1174
1175         * diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
1176         * dirname.c (dir_name): Likewise.
1177
1178         * basename.c (base_name): Use ISSLASH rather than comparing against `/'.
1179
1180         * dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
1181         (dir_name): Assert that there are no trailing slashes.
1182
1183 2000-07-18  Bruno Haible  <haible@clisp.cons.org>
1184
1185         * mbswidth.h (mbswidth): Add a flags argument.
1186         (mbswidth): New declaration.
1187         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
1188         * mbswidth.c (mbswidth): Add a flags argument.
1189         (mbsnwidth): New function.
1190
1191 2000-07-24  Jim Meyering  <meyering@lucent.com>
1192
1193         * mbswidth.c: Remove useless #else.  From Bruno Haible.
1194
1195 2000-07-23  Paul Eggert  <eggert@twinsun.com>
1196
1197         * mbswidth.c (_XOPEN_SOURCE):
1198         Don't define; this causes problems on Solaris 7.
1199         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
1200
1201 2000-07-23  Paul Eggert  <eggert@twinsun.com>
1202
1203         * quotearg.c:
1204         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
1205         so that mbstate_t is always defined.
1206
1207         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
1208         be 1 in at least one GCC installation, and this configuration
1209         error is likely to be common.  Ignoring MB_LEN_MAX hurts
1210         performance on hosts that have mbrtowc but have only unibyte
1211         locales, but I assume these hosts are rare.
1212
1213 2000-07-23  Paul Eggert  <eggert@twinsun.com>
1214
1215         * quotearg.c: Streamline by invoking multibyte code only if needed.
1216         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
1217         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
1218         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
1219         invoke multibyte primitives.
1220
1221 2000-07-23  Jim Meyering  <meyering@lucent.com>
1222
1223         * basename.c (base_name): Add an assertion.
1224
1225 2000-07-15  Bruno Haible  <clisp.cons.org>
1226
1227         * quotearg.c: When the system forces us to redefine mbstate_t,
1228         shadow its mbsinit function.
1229
1230 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
1231
1232         * mbswidth.h: New file.
1233         * mbswidth.c: New file.
1234         * Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
1235         (noinst_HEADERS): Add mbswidth.h.
1236
1237 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
1238
1239         * config.charset: Add support for FreeBSD. Improve support for HP-UX
1240         and IRIX 6.
1241
1242 2000-07-15  Jim Meyering  <meyering@lucent.com>
1243
1244         * makepath.c: Include quote.h.
1245         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
1246         corresponding argument in a `quote (...)' call.
1247         Give better diagnostics.
1248
1249         * Makefile.am (libfetish_a_SOURCES): Add quote.c.
1250         (noinst_HEADERS): Add quote.h.
1251
1252         * quote.c (quote, quote_n): New file.  Two functions taken verbatim
1253         from tar's src/misc.c.
1254         * quote.h: New file.  Prototypes for same.
1255
1256 2000-07-10  Paul Eggert  <eggert@twinsun.com>
1257
1258         From a suggestion by Bruno Haible.
1259         * quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
1260         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
1261         to decide whether to define the BeOS workaround macro;
1262         this adjusts to the change to AC_MBSTATE_T.
1263
1264 2000-07-13  Paul Eggert  <eggert@twinsun.com>
1265
1266         * quotearg.h (enum quoting style): New enum clocale_quoting_style.
1267
1268         * quotearg.c (quoting_style_args, quoting_style_vals,
1269         quotearg_buffer_restyled): Add support for
1270         clocale_quoting_style.  Undo previous change to
1271         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
1272         and "{RIGHT QUOTATION MARK}" msgids.
1273
1274 2000-07-05  Paul Eggert  <eggert@twinsun.com>
1275
1276         The old behavior of quoting `like this' doesn't look good with
1277         newer, ISO-style fonts.  See:
1278         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
1279
1280         Instead, quote "like this" by default.  Let the translator
1281         tailor the locale-specific quoting behavior by providing
1282         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
1283
1284         * quotearg.c (N_): New macro.
1285         (gettext_default): New function.
1286         (quotearg_buffer_restyled): Use
1287         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
1288         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
1289
1290 2000-07-09  Jim Meyering  <meyering@lucent.com>
1291
1292         * Most files: Update copyright dates to include 2000.
1293
1294 2000-07-08  Jim Meyering  <meyering@lucent.com>
1295
1296         * xgethostname.c (ENAMETOOLONG): Define to an unlikely value
1297         if not defined.
1298         (xgethostname): Remove now-unnecessary #ifdef.
1299         Move declaration of `err' into loop where it's used.
1300
1301 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
1302
1303         * xgethostname.c (xgethostname): Protect against the SunOS5.5 bug
1304         by allocating a larger buffer. Test the gethostname return value for
1305         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
1306         returns an error and ENAMETOOLONG isn't defined.
1307
1308 2000-07-05  Paul Eggert  <eggert@twinsun.com>
1309         and Bruno Haible  <haible@clisp.cons.org>
1310
1311         * quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
1312
1313 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
1314
1315         * quotearg.c (struct quoting_options): Simplify quote_these_too
1316         dimension.
1317
1318 2000-07-03  Jim Meyering  <meyering@lucent.com>
1319
1320         * strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
1321         Reported by Bruno Haible.
1322
1323 2000-07-04  Jim Meyering  <meyering@lucent.com>
1324
1325         * quotearg.c: Make inclusion of <wchar.h> independent of whether
1326         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
1327         lacks mbrtowc.
1328
1329 2000-07-03  Paul Eggert  <eggert@twinsun.com>
1330         and Bruno Haible  <haible@clisp.cons.org>
1331
1332         * quotearg.c (mbrtowc):
1333         Assign to *pwc, and return 1 only if result is nonzero.
1334         (iswprint): Use ISPRINT when substituting our own mbrtowc.
1335
1336 2000-07-03  Jim Meyering  <meyering@lucent.com>
1337
1338         * readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
1339         This is necessary to get a definition of e.g., UTMP_FILE on HP-UX 10.20.
1340         From Bob Proulx.
1341
1342 2000-07-02  Jim Meyering  <meyering@lucent.com>
1343
1344         * quotearg.c (mbstate_t): Don't define here.
1345
1346 2000-07-02  Jim Meyering  <meyering@lucent.com>
1347
1348         * nanosleep.c (SIGCONT): Define if not already defined.
1349
1350 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1351
1352         * mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
1353         per change in ../m4/ls-mntd-fs.m4.
1354         (read_filesystem_list): Ignore symbolic links.
1355
1356 2000-06-29  Jim Meyering  <meyering@lucent.com>
1357
1358         * same.c: Include <string.h> or <strings.h>, as appropriate,
1359         for declaration of strcmp.
1360
1361         * long-options.c: Include <stdlib.h>, for declaration of exit.
1362
1363         * mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
1364         Avoid warning by casting result to `char *' to remove `const'.
1365
1366 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1367
1368         * Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
1369
1370 2000-06-26  Paul Eggert  <eggert@twinsun.com>
1371
1372         savedir now sets errno on failure and invokes xmalloc to get memory.
1373         Fix a couple of other minor bugs while we're at it.
1374
1375         * savedir.c (<unistd.h>): Do not include; there's no need.
1376         (NAMLEN): Remove macro.
1377         (malloc, realloc): Remove decls.
1378         (stpcpy): Likewise.
1379         ("xalloc.h"): Include.
1380         (NAME_SIZE_DEFAULT): New macro.
1381         (savedir): Use xmalloc / xrealloc to allocate memory.
1382         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
1383         Skip "" directory entries.
1384         Use strlen to calculate directory entry length, since the old method
1385         is rarely used these days and isn't worth supporting.
1386         Don't use a pointer after freeing it.
1387         Check for integer overflow when calculating allocation size.
1388         Use memcpy to copy entries, instead of stpcpy.
1389         Set errno properly when returning NULL.
1390         Check for readdir error.
1391
1392 2000-06-26  Jim Meyering  <meyering@lucent.com>
1393
1394         * posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
1395
1396 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1397
1398         * getusershell.c (xmalloc, xrealloc): Remove functions.
1399         Include xalloc.h.
1400         Don't include <stdlib.h>.  Don't declare malloc, realloc.
1401
1402 2000-06-23  Bruno Haible  <haible@clisp.cons.org>
1403
1404         * unicodeio.c (print_unicode_char): Work around ansi2knr deficiency.
1405
1406 2000-06-24  Jim Meyering  <meyering@lucent.com>
1407
1408         * error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
1409
1410 2000-06-21  Jim Meyering  <meyering@lucent.com>
1411
1412         * getpass.c: New file, from Bruno Haible.  Required for BeOS.
1413
1414 2000-06-19  Paul Eggert  <eggert@twinsun.com>
1415
1416         * quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
1417         (mbrtowc, mbstate_t): Define substitutes if
1418         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
1419         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
1420         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
1421
1422 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1423
1424         * xgetcwd.c (xgetcwd): If the required pathname length is smaller
1425         than 1024, return a memory chunk of least possible size, instead
1426         of size PATH_MAX + 2. In the loop, increment the size proportionally.
1427         Use free/xmalloc instead of xrealloc to avoid copying for very long
1428         paths.
1429
1430 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1431
1432         * canon-host.c (canon_host): Use malloc and memcpy to copy an
1433         address, not strdup.  Include <stdlib.h> and don't declare free().
1434
1435 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
1436
1437         * path-concat.c (path_concat): Don't access dir[-1] if dir is
1438         the empty string.
1439
1440 2000-06-21  Jim Meyering  <meyering@lucent.com>
1441
1442         * Makefile.am (libfetish_a_SOURCES): Add getstr.c.
1443         (noinst_HEADERS): Add getstr.h.
1444
1445         * getline.c (getstr): Move into a separate file.
1446         * getstr.c (getstr): New file, extracted from getline.c, with
1447         the following changes: new parameter, delim2; both delim[12]
1448         parameters have type `int', not `char'.  The latter would lose
1449         with 8-bit delimiters.
1450         * getstr.h: New file.
1451
1452 2000-06-19  Jim Meyering  <meyering@lucent.com>
1453
1454         * getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
1455
1456 2000-06-18  Jim Meyering  <meyering@lucent.com>
1457
1458         * mkdir.c: Remove file, due mainly to copyright incompatibility.
1459         Besides, these days every porting target provides a mkdir function.
1460
1461         * strnlen.c: Include memory.h, string.h, and/or strings.h as needed.
1462         (this snippet comes from src/system.h).
1463
1464 2000-06-15  Paul Eggert  <eggert@twinsun.com>
1465
1466         * human.c (adjust_value): New function.
1467         (human_readable_inexact): Apply rounding style even when
1468         printing approximate values.
1469
1470 2000-06-14  Paul Eggert  <eggert@twinsun.com>
1471
1472         * human.c (human_readable_inexact): Allow an input block
1473         size that is not a multiple of the output block size, and vice versa.
1474         Reported by Piergiorgio Sartor.
1475
1476 2000-06-14  Paul Eggert  <eggert@twinsun.com>
1477
1478         * getdate.y (get_date): Apply relative times after time
1479         zone indicator, not before.  Reported by Todd A. Jacobs.
1480
1481 2000-06-13  Jim Meyering  <meyering@lucent.com>
1482
1483         * Makefile.am (all-local): Depend on lstat.c and stat.c.
1484
1485         * xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
1486
1487 2000-06-12  Paul Eggert  <eggert@twinsun.com>
1488
1489         * xstat.in: Include <stdlib.h> in lstat, to declare "free".
1490
1491 2000-06-04  Paul Eggert  <eggert@twinsun.com>
1492
1493         * strnlen.c: Include <config.h> if HAVE_CONFIG_H.
1494
1495 2000-06-04  Jim Meyering  <meyering@lucent.com>
1496
1497         * getugroups.c (getugroups): Cast -1 to gid_t, for systems like
1498         SunOS4.1.4 for which gid_t is an unsigned type.
1499
1500 2000-06-03  Jim Meyering  <meyering@lucent.com>
1501
1502         * strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
1503
1504 2000-05-26  Bruno Haible  <haible@clisp.cons.org>
1505
1506         * Makefile.am (install-exec-local): On systems with glibc-2.1 or
1507         newer, don't install charset.alias.
1508         * config.charset: Change the Linux/glibc rules so they become empty
1509         on glibc-2.1 or newer.
1510
1511 2000-06-02  Jim Meyering  <meyering@lucent.com>
1512
1513         * mountlist.c: Back out last change.  Instead, do this...
1514         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the me_dummy
1515         member using the same `ignore'-testing code.
1516         * mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
1517         fs_type strings.
1518         From Mark D. Roth.
1519
1520 2000-05-29  Jim Meyering  <meyering@lucent.com>
1521
1522         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore mounts
1523         with the `ignore' attribute.  Based on a patch from Mark D. Roth.
1524
1525 2000-05-22  Jim Meyering  <meyering@lucent.com>
1526
1527         * makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
1528
1529 2000-05-18  Jim Meyering  <meyering@lucent.com>
1530
1531         * hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
1532         back, too, since it may have been modified by allocate_entry.
1533         (hash_delete): Rewrite to use neither the assignment operator
1534         nor the comma operator in an if-expression.
1535
1536 2000-05-15  Paul Eggert  <eggert@twinsun.com>
1537
1538         * closeout.c:
1539         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
1540         Remove; no longer needed.
1541         "quotearg.h": Add include.
1542         (file_name): Do not bother to explicitly initialize to NULL; it's less
1543         efficient on some hosts.
1544         (close_stdout_status): Remove test as to whether stdout was already
1545         closed; it breaks for the case "echo x | sort >&-".
1546         Quote file name colons.
1547         Do not assume that _("write error") lacks format strings.
1548
1549 2000-05-15  Jim Meyering  <meyering@lucent.com>
1550
1551         * version-etc.c (version_etc_copyright): Update the copyright string
1552         used in all --version output.
1553
1554 2000-05-14  Jim Meyering  <meyering@lucent.com>
1555
1556         * closeout.c (close_stdout_set_file_name): New function.
1557         (close_stdout_status): Use new file-scoped global.
1558         Return right away if fstat says the stdout file descriptor is invalid.
1559         * closeout.h (close_stdout_set_file_name): Declare.
1560
1561 2000-05-10  Jim Meyering  <meyering@lucent.com>
1562
1563         * closeout.c [default_exit_status]: New file-scoped variable.
1564         (close_stdout_set_status): New function.
1565         * closeout.h (close_stdout_set_status): Declare.
1566
1567 2000-05-08  Jim Meyering  <meyering@lucent.com>
1568
1569         * long-options.c: Don't include closeout.h.
1570         (parse_long_options): Don't call close_stdout for --version.
1571
1572 2000-05-06  Jim Meyering  <meyering@lucent.com>
1573
1574         * strnlen.c: Undefine __strnlen and strnlen.
1575         [!weak_alias]: Define __strnlen to strnlen.
1576
1577         * atexit.c: New file, from libiberty.
1578
1579 2000-05-06  Jim Meyering  <meyering@lucent.com>
1580
1581         * closeout.c (close_stdout_status): Also check for errors on the
1582         stderr stream.
1583
1584 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
1585
1586         * localcharset.c (get_charset_aliases): Use malloc, realloc and memcpy
1587         instead of xmalloc, xrealloc, path_concat.
1588         (locale_charset): Treat empty environment variables as absent.
1589         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
1590
1591 2000-05-04  Jim Meyering  <meyering@lucent.com>
1592
1593         * getopt.c: Update from glibc.
1594         * obstack.c: Likewise.
1595         * obstack.h: Likewise.
1596         * regex.c: Likewise.  NB: K&R compiler support is dropped for this file
1597
1598         * regex.h: Likewise.
1599         * strndup.c: Likewise.
1600         * strnlen.c: New file, from glibc.
1601
1602 2000-05-01  Jim Meyering  <meyering@lucent.com>
1603
1604         * full-write.c (full_write): Remove `FIXME' part of comment.
1605
1606 2000-04-29  Jim Meyering  <meyering@lucent.com>
1607
1608         * path-concat.c: Declare strdup only if it's not defined.
1609         * canon-host.c: Likewise.
1610
1611 2000-04-28  Jim Meyering  <meyering@lucent.com>
1612
1613         * rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to avoid
1614         redefinition warning on some systems (HPUX).  Otherwise, regex.h is
1615         included first, then limits.h is included by locale.h by libintl.h.
1616         From John David Anglin.
1617
1618 2000-04-25  Jim Meyering  <meyering@lucent.com>
1619
1620         * makepath.c (S_IRWXUGO): Define.
1621         (make_path): Always perform explicit chmod if MODE specifies any
1622         of the `special' permission bits.  Prompted by a bug report against
1623         install from Mate Wierdl and Joost van Baal.
1624
1625 2000-04-18  Jim Meyering  <meyering@lucent.com>
1626
1627         * README: New file.
1628
1629         * getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
1630         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
1631
1632 2000-04-17  Jim Meyering  <meyering@lucent.com>
1633
1634         * strftime.c (my_strftime) [strftime]: Declare strftime here, since
1635         the definition of it to rpl_strftime also defined-away the system's
1636         declaration.
1637
1638 2000-04-15  Jim Meyering  <meyering@lucent.com>
1639
1640         Use `C' to denote so-called `contiguous' files, the same way
1641         that tar does.
1642         * filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
1643         (ftypelet): Use S_ISCTG.
1644         From Michael Deutschmann.
1645
1646 2000-04-14  Jim Meyering  <meyering@lucent.com>
1647
1648         * strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
1649
1650 2000-04-08  Jim Meyering  <meyering@lucent.com>
1651
1652         * Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
1653         names don't conflict.  Reported by Eli Zaretskii.
1654
1655 2000-03-28  Bruno Haible  <haible@clisp.cons.org>
1656
1657         * unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
1658         bug.  Deal with the different error behavior of Irix iconv.
1659
1660 2000-04-07  Jim Meyering  <meyering@lucent.com>
1661
1662         * putenv.c: Move inclusion of errno.h so it follows that of sys/types.h,
1663         to work around system header problems on AIX 3.2.5.  From Bruno Haible.
1664
1665 2000-04-05  Jim Meyering  <meyering@lucent.com>
1666
1667         Portability tweaks required for ultrix4.3.
1668         * readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare getutent.
1669         * readutmp.c: Include sys/types.h before sys/stat.h.
1670         * canon-host.c: Declare strdup.
1671         * path-concat.c: Likewise.
1672         From John David Anglin.
1673
1674 2000-04-04  Jim Meyering  <meyering@lucent.com>
1675
1676         Be more DOS 8.3-friendly.
1677         * ref-add.sin: Renamed from ref-add.sed.in.
1678         * ref-del.sin: Renamed from ref-del.sed.in.
1679         * Makefile.am: Reflect renaming.
1680         Reported by Eli Zaretskii.
1681
1682         Use a temporary file name that won't clash with `charset.alias'
1683         in the DOS 8.3 name space.
1684         * Makefile.am (charset_tmp): Define.
1685         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
1686         (uninstall-local): Likewise.
1687         Reported by Eli Zaretskii.
1688
1689 2000-03-29  Paul Eggert  <eggert@twinsun.com>
1690
1691         * time/strftime.c (my_strftime): Make sure we call the system
1692         strftime, not ourselves, when invoking the underlying strftime.
1693
1694 2000-03-24  Jim Meyering  <meyering@lucent.com>
1695
1696         * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
1697         (charset_alias): Define.
1698         (install-exec-local): Factor out common code.
1699         (uninstall-local): Split lines longer than 80.
1700         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
1701         (SUFFIXES): Define.
1702         (.sed.in.sed): New rule.  Don't redirect directly to $@.
1703         (CLEANFILES): Add ref-add.sed and ref-del.sed.
1704
1705 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
1706
1707         * config.charset: Output a line containing "Packages using this file".
1708         * ref-add.sed.in, ref-del.sed.in: New files.
1709         * Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
1710         ref-del.sed): New rules.
1711
1712 2000-03-17  Jim Meyering  <meyering@lucent.com>
1713
1714         * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
1715         Otherwise, include <strings.h>
1716
1717 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
1718
1719         * unicodeio.c (utf8_wctomb): New function.
1720         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
1721         format instead of in UCS-4 with platform dependent endianness.
1722
1723 2000-03-07  Paul Eggert  <eggert@twinsun.com>
1724
1725         * savedir.c (savedir): Work even if directory size is
1726         negative; this can happen with some screwy NFS configurations.
1727
1728 2000-03-06  Jim Meyering  <meyering@lucent.com>
1729
1730         * localcharset.c (get_charset_aliases): Don't try to free file_name
1731         if it's NULL (because we ran out of memory).  From Bruno Haible.
1732
1733 2000-03-05  Jim Meyering  <meyering@lucent.com>
1734
1735         * localcharset.c ("path-concat.h"): Include.
1736         (get_charset_aliases): Use path_concat instead of ANSI string
1737         concatenation.
1738
1739         * unicodeio.h (PARAMS): Define.
1740         Use it to guard prototype.
1741
1742 2000-03-04  Jim Meyering  <meyering@lucent.com>
1743
1744         * Makefile.am (install-exec-local): Create $(libdir) before installing
1745         into it.
1746         (uninstall-local): Uncomment this rule so `make distcheck' works
1747         once again.
1748
1749         * unicodeio.c (<errno.h>): Include it.
1750         (errno): Declare if not defined.
1751
1752         * localcharset.c: Add Bruno's comment justifying use of volatile.
1753
1754         * config.charset: New version, incorporating remarks from a linux
1755         i18n mailing list.  From Bruno Haible.
1756
1757 2000-03-02  Jim Meyering  <meyering@lucent.com>
1758
1759         * Makefile.am (EXTRA_DIST): Add config.charset.
1760
1761 2000-03-01  Jim Meyering  <meyering@lucent.com>
1762
1763         * localcharset.c: Guard some #includes with `#if HAVE_...'.
1764         * unicodeio.c: Likewise.
1765
1766 2000-02-02  Bruno Haible  <haible@clisp.cons.org>
1767
1768         * config.charset: New file.
1769         * localcharset.c: New file.
1770         * unicodeio.h, unicodeio.c: New files.
1771         * Makefile.am (DEFS): Add -DLIBDIR=...
1772         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
1773         (noinst_HEADERS): Add unicodeio.h.
1774         (all-local, install-exec-local, charset.alias): New targets.
1775
1776 2000-02-28  Paul Eggert  <eggert@twinsun.com>
1777
1778         * quotearg.c (ALERT_CHAR): New macro.
1779         (quotearg_buffer_restyled): Use it.
1780
1781 2000-02-27  Jim Meyering  <meyering@lucent.com>
1782
1783         * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
1784         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
1785
1786         * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H',
1787         not `#if STDC_HEADERS'.
1788         Declare malloc if needed.
1789
1790         * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..'
1791         now that autoconf always defines the HAVE_DECL_ symbols.
1792         * human.c: Likewise.
1793         * same.c: Likewise.
1794         * strtoumax.c: Likewise.
1795
1796         * backupfile.c: Arrange for cpp to fail if the configure-time
1797         declaration check was not run.
1798         * hash.c: Likewise.
1799         * human.c: Likewise.
1800         * same.c: Likewise.
1801         * strtoumax.c: Likewise.
1802
1803         * userspec.c (parse_user_spec): If there is no `:' but there is a `.',
1804         then first look up the entire `.'-containing string as a login name.
1805
1806 2000-02-18  Paul Eggert  <eggert@twinsun.com>
1807
1808         * getdate.y: Handle two-digit years with leading zeros correctly.
1809         (textint): New typedef.
1810         (parser_control): Member year changed from int to textint.
1811         All uses changed.
1812         (YYSTYPE): Removed; replaced by %union with int and textint members.
1813         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
1814         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
1815         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
1816         (tSNUMBER, tUNUMBER): Now of type <textintval>.
1817         (date, number, to_year): Use width of number in digits, not its value,
1818         to determine whether it's a 2-digit year, or a 2-digit time.
1819         (yylex): Store number of digits of numeric tokens.
1820         Reported by John Kendall.
1821
1822         (parser_control): Changed from struct parser_control to typedef (for
1823         consistency).  All uses changed.
1824
1825         (tID): Removed; not used.
1826         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
1827
1828 2000-02-14  Paul Eggert  <eggert@twinsun.com>
1829
1830         * getpagesize.h (getpagesize): Port to VMS for Alpha;
1831         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
1832
1833 2000-02-12  Jim Meyering  <meyering@lucent.com>
1834
1835         * userspec.c (ISDIGIT): Define it.
1836         (isdigit): Remove definition.
1837         (is_number): Use ISDIGIT, not isdigit.
1838         <libintl.h>: Include.
1839         (_ and N_): Define.
1840         (parse_user_spec): Mark translatable strings.
1841
1842 2000-02-10  Jim Meyering  <meyering@lucent.com>
1843
1844         With these changes, nanosleep.[ch] are finally enough like the other
1845         lib/* replacement files to compile on a few more losing systems.
1846
1847         * nanosleep.h: Don't include config.h.
1848         Remove prototype from declaration of nanosleep.
1849         (PARAMS): Remove now-unneeded definition.
1850         * nanosleep.c: #undef nanosleep.
1851         (rpl_nanosleep): Rename from nanosleep.
1852
1853 2000-02-03  Jim Meyering  <meyering@lucent.com>
1854
1855         * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
1856         rather than with `#if HAVE_UTMPNAME'.
1857
1858 2000-02-01  Jim Meyering  <meyering@lucent.com>
1859
1860         * readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
1861
1862 2000-01-31  Jim Meyering  <meyering@lucent.com>
1863
1864         * nanosleep.h (nanosleep): Guard declaration with
1865         `#if ! HAVE_DECL_NANOSLEEP'.
1866         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
1867         the declaration in that vendor's sys/timers.h.
1868         Reported by Christian Krackowizer.
1869
1870         * quotearg.c (ISASCII): Add #undef and move definition to follow
1871         inclusion of wctype.h to work around solaris2.6 namespace pollution.
1872         (ISPRINT): Likewise.
1873         Reported by Tom Tromey.
1874
1875 2000-01-30  Jim Meyering  <meyering@lucent.com>
1876
1877         * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding
1878         uses of ->ut_name.  The latter doesn't work with new Linux header files
1879         where only utmpx.ut_user is declared.
1880
1881         * readutmp.h (UT_USER): Define.
1882
1883 2000-01-23  Jim Meyering  <meyering@lucent.com>
1884
1885         * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
1886         obstack.c.
1887
1888 2000-01-22  Jim Meyering  <meyering@lucent.com>
1889
1890         * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
1891         [! HAVE_DECL_STRTOULL]: Declare strtoull.
1892         Required for some AIX systems.  Reported by Christian Krackowizer.
1893         [TESTING] (main): New function.
1894
1895         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
1896         * dirname.c (dir_name): Support for DOS-style file names with drive
1897         letters.
1898
1899         * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint.
1900
1901         * strverscmp.c (ISDIGIT): Define.
1902         (strverscmp): Use ISDIGIT, not isdigit.
1903
1904 2000-01-17  Paul Eggert  <eggert@twinsun.com>
1905
1906         * nanosleep.c (nanosleep):
1907         Don't use SA_INTERRUPT to decide whether to call sigaction, as
1908         POSIX.1 doesn't require SA_INTERRUPT and some systems
1909         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
1910         it's been part of POSIX.1 since day 1 (in 1988).
1911
1912 2000-01-17  Jim Meyering  <meyering@lucent.com>
1913
1914         * interlock: Remove unused file.  Reported by François Pinard.
1915
1916 2000-01-16  Paul Eggert  <eggert@twinsun.com>
1917
1918         * quotearg.c (quotearg_buffer_restyled): Do not quote
1919         alert, backslash, formfeed, and vertical tab unnecessarily in
1920         shell quoting style.
1921
1922 Local Variables:
1923 version-control: never
1924 End: