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