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