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