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