1516461f4d1fe050d259131dcfdd368000fd4872
[gnulib.git] / lib / ChangeLog
1 2000-12-07  Jim Meyering  <meyering@lucent.com>
2
3         * dirname.c (FILESYSTEM_PREFIX_LEN): Define.
4         (dir_name_r): Declare this function as static.
5         [BACKSLASH_IS_PATH_SEPARATOR]: Fix a bug that'd
6         manifest itself on a name containing a mix of slashes and
7         backslashes.
8         Make this function work with names starting with a DOS-style
9         drive letter and colon prefix.
10         (dir_name): Append `.' if necessary.
11         Based mostly on patches from Prashant TR and Eli Zaretskii.
12
13         * dirname.h (dir_name_r): Remove prototype.
14
15 2000-12-05  Jim Meyering  <meyering@lucent.com>
16
17         * dirname.c (dir_name_r): Add `const' in a few local declarations.
18
19 2000-12-04  Jim Meyering  <meyering@lucent.com>
20
21         * path-concat.c: [!HAVE_DECL_MALLOC]: Declare malloc.
22         Also include memory.h, stdlib.h, unistd.h if appropriate.
23         Reported by Andreas Jaeger (conflicting declaration of malloc).
24
25 2000-12-02  Jim Meyering  <meyering@lucent.com>
26
27         * closeout.h: Make idempotent, to avoid some obscure warnings.
28
29 2000-12-01  Paul Eggert  <eggert@twinsun.com>
30
31         * lib/memrchr.c: Include <config.h> before any system include file.
32
33 2000-11-29  Paul Eggert  <eggert@twinsun.com>
34
35         * lib/dirname.c (dir_name_r): Fix typo: int -> size_t.
36
37 2000-11-26  Jim Meyering  <meyering@lucent.com>
38
39         * memcoll.c: Include sys/types.h.  From Werner Almesberger.
40
41 2000-11-22  Paul Eggert  <eggert@twinsun.com>
42
43         * lib/strftime.c (my_strftime): Do not invoke mbrlen with a
44         size of (size_t) -1; it's not portable.
45
46 2000-11-17  Akim Demaille  <akim@epita.fr>
47
48         * lib/obstack.h: Formatting changes.
49         (obstack_grow, obstack_grow0): Don't cast WHERE at all: that would
50         prevent type checking.
51         (obstack_ptr_grow, obstack_ptr_grow_fast): When assigning, don't
52         cast the value to (void *): assigning a `foo *' to a `void *'
53         variable is valid.
54         (obstack_int_grow, obstack_int_grow_fast): Don't cast AINT to int.
55
56 2000-11-17  Jim Meyering  <meyering@lucent.com>
57
58         * strstr.c: Update from GNU libc.
59
60 2000-11-16  Jim Meyering  <meyering@lucent.com>
61
62         * strverscmp.c: Incorporate weak-alias-related changes from glibc.
63
64 2000-11-11  Jim Meyering  <meyering@lucent.com>
65
66         * error.c: Add a couple #includes, merging from GNU libc version.
67
68 2000-11-10  Jim Meyering  <meyering@lucent.com>
69
70         * obstack.h: Update from GNU libc.
71         * obstack.c: Likewise.
72
73 2000-11-06  Paul Eggert  <eggert@twinsun.com>
74
75         * getusershell.c (setusershell): Use rewind rather than
76         fseek/fseeko, to avoid configuration hassles with fseeko.
77         Don't bother opening SHELLS_FILE if shellstream is NULL;
78         it's not necessary.
79
80 2000-11-05  Jim Meyering  <meyering@lucent.com>
81
82         * makepath.h (make_dir): Declare.
83         * makepath.c (make_dir): Remove `static' attribute.
84         Tweak a comment.
85
86 2000-11-04  Alexandre Duret-Lutz  <duret_g@epita.fr>
87
88         * hash.c (hash_get_next): Fix a thinko:  when ENTRY is the
89         last one in a bucket, advance to the next bucket.
90
91 2000-11-02  Vesselin Atanasov  <vesselin@bgnet.bg>
92
93         * fnmatch.c: Do not comment out all the code if we are using
94         the GNU C library, because in some cases we are replacing buggy
95         code in the GNU C library itself.
96
97 2000-10-30  Paul Eggert  <eggert@twinsun.com>
98
99         * error.h, getline.h, modechange.h:
100         Remove "2000" from Copyright line, as the file hasn't been
101         changed this year other than in the copyright notice.
102
103         * xalloc.h: Add "2000" to Copyright line, as this file
104         was changed this year.
105
106 2000-10-30  Paul Eggert  <eggert@twinsun.com>
107
108         * fnmatch.c (FOLD): Do not assume that characters are unsigned.
109         (fnmatch): Fix some FNM_FILE_NAME and FNM_LEADING_DIR bugs,
110         e.g. fnmatch("d*/*1", "d/s/1", FNM_FILE_NAME) incorrectly yielded zero.
111
112 2000-10-29  Greg Louis  <glouis@dynamicro.on.ca>
113
114         * regex.h (__restrict_arr): Move definition out of #ifndef block.
115         Required because egcs-2.91.66 (aka 1.1.2) defines __restrict, but
116         doesn't define __restrict_arr.
117
118 2000-10-29  Jim Meyering  <meyering@lucent.com>
119
120         * xstat.in: Fix grammar in comment.
121
122 2000-10-28  Jim Meyering  <meyering@lucent.com>
123
124         * memchr.c: Update from libc.
125         Adjust for portability:
126         [HAVE_STDLIB_H]: Include stdlib.h.
127         [HAVE_BP_SYM_H || _LIBC]: Guard inclusion of bp-sym.h.
128         Undef __memchr, too.
129         [!weak_alias]: Define __memchr to memchr.
130
131         * regex.c: Update from libc.
132         * regex.h: Likewise.
133         * getopt1.c: Likewise.
134         * memcmp.c: Likewise.
135
136         * getusershell.c (setusershell) [HAVE_FSEEKO]: Use fseeko.
137         Avoid using fseek, when possible -- it's broken by design.
138         Patch by Ulrich Drepper.
139
140 2000-10-26  Jim Meyering  <meyering@lucent.com>
141
142         * strftime.c: Update from libc.
143
144 2000-10-25  Jim Meyering  <meyering@lucent.com>
145
146         * obstack.c: Update from libc.
147
148 2000-10-23  Jim Meyering  <meyering@lucent.com>
149
150         * hard-locale.c (hard_locale): Revert last change -- it was simply
151         wrong.  That set_locale call must not have any side effects.
152         From Paul Eggert.
153
154 2000-10-22  Jim Meyering  <meyering@lucent.com>
155
156         * md5.c (md5_process_block) [OP]: Use `rol', not CYCLIC.
157         [CYCLIC]: Remove now-unused definition.
158
159         * save-cwd.c (O_DIRECTORY): Define, if needed.
160         (save_cwd) [HAVE_FCHDIR]: Use O_DIRECTORY when opening ".".
161         Suggestion from Ulrich Drepper.
162
163 2000-10-21  Jim Meyering  <meyering@lucent.com>
164
165         * dirname.c (dir_name_r): New function, factored out of dir_name.
166         (dir_name): Use dir_name_r.
167         * dirname.h (dir_name_r): Declare it.
168
169 2000-10-21  Jim Meyering  <meyering@lucent.com>
170
171         * dirname.c (memrchr): Declare if necessary.
172         (dir_name): Remove the restriction that there be no
173         trailing slashes.  Now, this code skips past them, effectively
174         ignoring them.
175         [TEST_DIRNAME] (main): New unit tests.
176
177         * memrchr.c: New file from GNU libc.
178         Undef __memrchr, too.
179         [!weak_alias]: Define __memrchr to memrchr.
180         Guard weak_alias use with `#ifdef weak_alias'.
181
182 2000-10-17  Jim Meyering  <meyering@lucent.com>
183
184         * quote.h (PARAMS): Define and use.
185         Reported by Akim Demaille.
186
187         * getopt.c: Update from libc.
188
189 2000-10-16  Jim Meyering  <meyering@lucent.com>
190
191         * hard-locale.c (hard_locale): Use "", not 0 as 2nd arg to setlocale.
192         From Jan Fedak.
193
194 2000-09-25  Jim Meyering  <meyering@lucent.com>
195
196         * md5.h (rol): Define (from GnuPG).
197
198         * sha.c: Give credit (GnuPG) where due.
199         (M): Use rol rather than open-coding it.
200         Add a FIXME comment.
201
202 2000-09-21  Jim Meyering  <meyering@lucent.com>
203
204         * userspec.c (parse_user_spec): Remove debugging printf I'd added.
205         Reported by Michael Stone.
206
207 2000-09-20  Jim Meyering  <meyering@lucent.com>
208
209         * Makefile.am (libfetish_a_SOURCES): Add sha.c.
210         (noinst_HEADERS): Add sha.h.
211         Based on code from Scott G. Miller and from GnuPG.
212
213 2000-09-15  Jim Meyering  <meyering@lucent.com>
214
215         * regex.c: Update from libc.
216
217 2000-09-10  Jim Meyering  <meyering@lucent.com>
218
219         * getopt.c (_getopt_internal): Update from glibc.
220
221 2000-09-09  Jim Meyering  <meyering@lucent.com>
222
223         * quotearg.c: Rename ISASCII to IN_CTYPE_DOMAIN, so people don't
224         think it should be used as a general replacement for isascii.
225         * fnmatch.c: Likewise.
226         * mbswidth.c: Likewise
227         * regex.c: Likewise.
228
229         Don't use atoi.
230         * userspec.c: Include sys/param.h and limits.h.
231         Include xstrtol.h.
232         (CHAR_BIT, TYPE_SIGNED, TYPE_MINIMUM, TYPE_MAXIMUM): Define.
233         (UID_T_MAX, GID_T_MAX, MAXUID, MAXGID): Define.
234         (parse_user_spec): Use xstrtoul, not atoi when converting numeric
235         UID, GID.  Check range.
236
237 2000-09-06  Jim Meyering  <meyering@lucent.com>
238
239         * getopt.c (_getopt_internal): Update from glibc.
240
241 2000-08-30  Jim Meyering  <meyering@lucent.com>
242
243         * strftime.c: Merge in changes from GNU libc.
244
245 2000-08-26  Jim Meyering  <meyering@lucent.com>
246
247         * closeout.c: Include "__fpending.h".
248         (close_stdout_status): Return right away if there's nothing to flush.
249
250         * Makefile.am (noinst_HEADERS): Add __fpending.h.
251         * __fpending.c: New file.
252         * __fpending.h: New file.
253
254 2000-08-07  Paul Eggert  <eggert@twinsun.com>
255
256         Standardize on "memory exhausted" instead of "Memory exhausted"
257         or "virtual memory exhausted".
258         * obstack.c (print_and_abort): Use "memory exhausted", not
259         "virtual memory exhausted".
260         * same.c (same_name): Invoke xalloc_die instead of printing
261         our own message.
262         * userspec.c (parse_user_spec): Likewise.
263         * bumpalloc.h: comment fix
264         * same.c, userspec.c: Include xalloc.h.
265
266         * xalloc.h (xalloc_msg_memory_exhausted): Now char const[],
267         not char *const and pointing to a constant array.
268         * xmalloc.c (xalloc_msg_memory_exhausted): Likewise.
269         (xrealloc): Comment fix.
270
271         * userspec.c (parse_user_spec):
272         Don't translate a message until just before returning,
273         to avoid unnecessary translation.
274
275 2000-08-07  Jim Meyering  <meyering@lucent.com>
276
277         * addext.c, argmatch.c, argmatch.h, backupfile.h, bumpalloc.h,
278         chown.c, diacrit.h, dirname.h, dup2.c, exclude.h, fileblocks.c,
279         fnmatch.c, fnmatch.h, fsusage.c, fsusage.h, getdate.h,
280         getgroups.c, gethostname.c, getopt.h, group-member.c,
281         hard-locale.c, hash.h, isdir.c, lchown.c, linebuffer.c,
282         linebuffer.h, long-options.h, malloc.c, md5.c, md5.h, memchr.c,
283         memcmp.c, memcoll.c, memset.c, mktime.c, modechange.h, obstack.h,
284         pathmax.h, realloc.c, rmdir.c, safe-read.c, save-cwd.c, stime.c,
285         stpcpy.c, strcasecmp.c, strcspn.c, strdup.c, stripslash.c,
286         strstr.c, strtod.c, strtol.c, strtoul.c, strtoull.c, strtoumax.c,
287         utime.c, version-etc.h, xalloc.h, xstrdup.c, xstrtoumax.c,
288         yesno.c: Back out Copyright date changes for each file with no change
289         this year.  This eases coordination with other programs using the same
290         source code modules.  From Paul Eggert.
291
292 2000-08-03  Greg McGary  <greg@mcgary.org>
293
294         * regex.c (SET_HIGH_BOUND, MOVE_BUFFER_POINTER,
295         ELSE_EXTEND_BUFFER_HIGH_BOUND): New macros.
296         (EXTEND_BUFFER): Use them.
297
298 2000-08-01  Jim Meyering  <meyering@lucent.com>
299
300         * dirname.c (ISSLASH): Define.
301         (BACKSLASH_IS_PATH_SEPARATOR): Define.
302         (dir_name) [BACKSLASH_IS_PATH_SEPARATOR]: Handle the case in which
303         both `\' and `/' may be use as path separators.
304         Based on a patch from Prashant TR.
305
306 2000-07-31  Paul Eggert  <eggert@twinsun.com>
307
308         * quotearg.c (quotearg_n_options): Don't make the initial
309         slot vector a constant, since it might get modified.
310
311 2000-07-31  Jim Meyering  <meyering@lucent.com>
312
313         * xmalloc.c: Use `virtual memory exhausted', not `Memory exhausted'.
314         * obstack.c (print_and_abort): Likewise.
315
316 2000-07-30  Paul Eggert  <eggert@twinsun.com>
317
318         * quotearg.c (quotearg_n_options): Preallocate a slot 0
319         buffer, so that the caller can always quote one small
320         component of a "memory exhausted" message in slot 0.
321         From a suggestion by Jim Meyering.
322
323 2000-07-30  Jim Meyering  <meyering@lucent.com>
324
325         * makepath.c (make_path): Quote the other instance, too.
326
327         * quotearg.c (N_STATIC_SLOTVECS): Define.
328         (STATIC_BUF_SIZE): Define.
329         (quotearg_n_options): Use only statically allocated storage when
330         N < N_STATIC_SLOTVECS and the length of the quoted result is smaller
331         than STATIC_BUF_SIZE.
332
333 2000-07-29  Jim Meyering  <meyering@lucent.com>
334
335         * diacrit.c (diacrit_diac): Use __MSDOS__ in favor of MSDOS.
336         * dirname.c (dir_name): Likewise.
337
338         * basename.c (base_name): Use ISSLASH rather than comparing against `/'.
339
340         * dirname.c (dir_name) [MSDOS]: Declare `lim' to be const.
341         (dir_name): Assert that there are no trailing slashes.
342
343 2000-07-18  Bruno Haible  <haible@clisp.cons.org>
344
345         * mbswidth.h (mbswidth): Add a flags argument.
346         (mbswidth): New declaration.
347         (MBSW_ACCEPT_INVALID, MBSW_ACCEPT_UNPRINTABLE): New macros.
348         * mbswidth.c (mbswidth): Add a flags argument.
349         (mbsnwidth): New function.
350
351 2000-07-24  Jim Meyering  <meyering@lucent.com>
352
353         * mbswidth.c: Remove useless #else.  From Bruno Haible.
354
355 2000-07-23  Paul Eggert  <eggert@twinsun.com>
356
357         * mbswidth.c (_XOPEN_SOURCE):
358         Don't define; this causes problems on Solaris 7.
359         (wcwidth) [!HAVE_DECL_WCWIDTH]: Declare.
360
361 2000-07-23  Paul Eggert  <eggert@twinsun.com>
362
363         * quotearg.c:
364         Include <wchar.h> even if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX),
365         so that mbstate_t is always defined.
366
367         Do not inspect MB_LEN_MAX, since it's incorrectly defined to
368         be 1 in at least one GCC installation, and this configuration
369         error is likely to be common.  Ignoring MB_LEN_MAX hurts
370         performance on hosts that have mbrtowc but have only unibyte
371         locales, but I assume these hosts are rare.
372
373 2000-07-23  Paul Eggert  <eggert@twinsun.com>
374
375         * quotearg.c: Streamline by invoking multibyte code only if needed.
376         <wchar.h>: Include only if HAVE_MBRTOWC && 1 < MB_LEN_MAX.
377         (MB_CUR_MAX): Redefine to 1 if ! (HAVE_MBRTOWC && 1 < MB_LEN_MAX).
378         (quotearg_buffer_restyled): If a unibyte locale, don't bother to
379         invoke multibyte primitives.
380
381 2000-07-23  Jim Meyering  <meyering@lucent.com>
382
383         * basename.c (base_name): Add an assertion.
384
385 2000-07-15  Bruno Haible  <clisp.cons.org>
386
387         * quotearg.c: When the system forces us to redefine mbstate_t,
388         shadow its mbsinit function.
389
390 2000-07-16  Bruno Haible  <haible@clisp.cons.org>
391
392         * mbswidth.h: New file.
393         * mbswidth.c: New file.
394         * Makefile.am (libfetish_a_SOURCES): Add mbswidth.c.
395         (noinst_HEADERS): Add mbswidth.h.
396
397 2000-07-17  Bruno Haible  <haible@clisp.cons.org>
398
399         * config.charset: Add support for FreeBSD. Improve support for HP-UX
400         and IRIX 6.
401
402 2000-07-15  Jim Meyering  <meyering@lucent.com>
403
404         * makepath.c: Include quote.h.
405         (make_path): Convert "`%s'" in format strings to "%s", and wrap each
406         corresponding argument in a `quote (...)' call.
407         Give better diagnostics.
408
409         * Makefile.am (libfetish_a_SOURCES): Add quote.c.
410         (noinst_HEADERS): Add quote.h.
411
412         * quote.c (quote, quote_n): New file.  Two functions taken verbatim
413         from tar's src/misc.c.
414         * quote.h: New file.  Prototypes for same.
415
416 2000-07-10  Paul Eggert  <eggert@twinsun.com>
417
418         From a suggestion by Bruno Haible.
419         * quotearg.c (mbrtowc): Do not use HAVE_WCHAR_H in the definition.
420         Use defined mbstate_t, not HAVE_MBSTATE_T_OBJECT,
421         to decide whether to define the BeOS workaround macro;
422         this adjusts to the change to AC_MBSTATE_T.
423
424 2000-07-13  Paul Eggert  <eggert@twinsun.com>
425
426         * quotearg.h (enum quoting style): New enum clocale_quoting_style.
427
428         * quotearg.c: (quoting_style_args, quoting_style_vals,
429         quotearg_buffer_restyled): Add support for
430         clocale_quoting_style.  Undo previous change to
431         locale_quoting_style behavior, and undo the "{LEFT QUOTATION MARK}"
432         and "{RIGHT QUOTATION MARK}" msgids.
433
434 2000-07-05  Paul Eggert  <eggert@twinsun.com>
435
436         The old behavior of quoting `like this' doesn't look good with
437         newer, ISO-style fonts.  See:
438         http://www.cl.cam.ac.uk/~mgk25/ucs/quotes.html
439
440         Instead, quote "like this" by default.  Let the translator
441         tailor the locale-specific quoting behavior by providing
442         translations for {LEFT QUOTATION MARK} and {RIGHT QUOTATION MARK}.
443
444         * quotearg.c (N_): New macro.
445         (gettext_default): New function.
446         (quotearg_buffer_restyled): Use
447         gettext_default ("{LEFT QUOTATION MARK}", "\"") for left quote, and
448         gettext_default ("{RIGHT QUOTATION MARK}", "\"") for right quote.
449
450 2000-07-09  Jim Meyering  <meyering@lucent.com>
451
452         * Most files: Update copyright dates to include 2000.
453
454 2000-07-08  Jim Meyering  <meyering@lucent.com>
455
456         * xgethostname.c (ENAMETOOLONG): Define to an unlikely value
457         if not defined.
458         (xgethostname): Remove now-unnecessary #ifdef.
459         Move declaration of `err' into loop where it's used.
460
461 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
462
463         * xgethostname.c (xgethostname): Protect against the SunOS5.5 bug
464         by allocating a larger buffer. Test the gethostname return value for
465         being >= 0, not == 0, for BeOS.  Don't exhaust memory if gethostname
466         returns an error and ENAMETOOLONG isn't defined.
467
468 2000-07-05  Paul Eggert  <eggert@twinsun.com>
469         and Bruno Haible  <haible@clisp.cons.org>
470
471         * quotearg.c (mbrtowc): Declare returned type, since BeOS doesn't.
472
473 2000-07-05  Bruno Haible  <haible@clisp.cons.org>
474
475         * quotearg.c (struct quoting_options): Simplify quote_these_too
476         dimension.
477
478 2000-07-03  Jim Meyering  <meyering@lucent.com>
479
480         * strndup.c: [!HAVE_DECL_STRNLEN]: Declare strnlen.
481         Reported by Bruno Haible.
482
483 2000-07-04  Jim Meyering  <meyering@lucent.com>
484
485         * quotearg.c: Make inclusion of <wchar.h> independent of whether
486         HAVE_MBRTOWC is set.  Required at least for irix-5.6, which
487         lacks mbrtowc.
488
489 2000-07-03  Paul Eggert  <eggert@twinsun.com>
490         and Bruno Haible  <haible@clisp.cons.org>
491
492         * quotearg.c (mbrtowc):
493         Assign to *pwc, and return 1 only if result is nonzero.
494         (iswprint): Use ISPRINT when substituting our own mbrtowc.
495
496 2000-07-03  Jim Meyering  <meyering@lucent.com>
497
498         * readutmp.h: [HAVE_UTMPX_H]: Include <utmp.h> if HAVE_UTMP_H.
499         This is necessary to get a definition of e.g., UTMP_FILE on HP-UX 10.20.
500         From Bob Proulx.
501
502 2000-07-02  Jim Meyering  <meyering@lucent.com>
503
504         * quotearg.c (mbstate_t): Don't define here.
505
506 2000-07-02  Jim Meyering  <meyering@lucent.com>
507
508         * nanosleep.c (SIGCONT): Define if not already defined.
509
510 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
511
512         * mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV,
513         per change in ../m4/ls-mntd-fs.m4.
514         (read_filesystem_list): Ignore symbolic links.
515
516 2000-06-29  Jim Meyering  <meyering@lucent.com>
517
518         * same.c: Include <string.h> or <strings.h>, as appropriate,
519         for declaration of strcmp.
520
521         * long-options.c: Include <stdlib.h>, for declaration of exit.
522
523         * mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]:
524         Avoid warning by casting result to `char *' to remove `const'.
525
526 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
527
528         * Makefile.am (libfetish_a_SOURCES): Remove readutmp.c.
529
530 2000-06-26  Paul Eggert  <eggert@twinsun.com>
531
532         savedir now sets errno on failure and invokes xmalloc to get memory.
533         Fix a couple of other minor bugs while we're at it.
534
535         * savedir.c (<unistd.h>): Do not include; there's no need.
536         (NAMLEN): Remove macro.
537         (malloc, realloc): Remove decls.
538         (stpcpy): Likewise.
539         ("xalloc.h"): Include.
540         (NAME_SIZE_DEFAULT): New macro.
541         (savedir): Use xmalloc / xrealloc to allocate memory.
542         Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero.
543         Skip "" directory entries.
544         Use strlen to calculate directory entry length, since the old method
545         is rarely used these days and isn't worth supporting.
546         Don't use a pointer after freeing it.
547         Check for integer overflow when calculating allocation size.
548         Use memcpy to copy entries, instead of stpcpy.
549         Set errno properly when returning NULL.
550         Check for readdir error.
551
552 2000-06-26  Jim Meyering  <meyering@lucent.com>
553
554         * posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort.
555
556 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
557
558         * getusershell.c (xmalloc, xrealloc): Remove functions.
559         Include xalloc.h.
560         Don't include <stdlib.h>.  Don't declare malloc, realloc.
561
562 2000-06-23  Bruno Haible  <haible@clisp.cons.org>
563
564         * unicodeio.c (print_unicode_char): Work around ansi2knr deficiency.
565
566 2000-06-24  Jim Meyering  <meyering@lucent.com>
567
568         * error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r.
569
570 2000-06-21  Jim Meyering  <meyering@lucent.com>
571
572         * getpass.c: New file, from Bruno Haible.  Required for BeOS.
573
574 2000-06-19  Paul Eggert  <eggert@twinsun.com>
575
576         * quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5.
577         (mbrtowc, mbstate_t): Define substitutes if
578         HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT.
579         (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT,
580         not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H).
581
582 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
583
584         * xgetcwd.c (xgetcwd): If the required pathname length is smaller
585         than 1024, return a memory chunk of least possible size, instead
586         of size PATH_MAX + 2. In the loop, increment the size proportionally.
587         Use free/xmalloc instead of xrealloc to avoid copying for very long
588         paths.
589
590 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
591
592         * canon-host.c (canon_host): Use malloc and memcpy to copy an
593         address, not strdup.  Include <stdlib.h> and don't declare free().
594
595 2000-06-17  Bruno Haible  <haible@clisp.cons.org>
596
597         * path-concat.c (path_concat): Don't access dir[-1] if dir is
598         the empty string.
599
600 2000-06-21  Jim Meyering  <meyering@lucent.com>
601
602         * Makefile.am (libfetish_a_SOURCES): Add getstr.c.
603         (noinst_HEADERS): Add getstr.h.
604
605         * getline.c (getstr): Move into a separate file.
606         * getstr.c (getstr): New file, extracted from getline.c, with
607         the following changes: new parameter, delim2; both delim[12]
608         parameters have type `int', not `char'.  The latter would lose
609         with 8-bit delimiters.
610         * getstr.h: New file.
611
612 2000-06-19  Jim Meyering  <meyering@lucent.com>
613
614         * getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define.
615
616 2000-06-18  Jim Meyering  <meyering@lucent.com>
617
618         * mkdir.c: Remove file, due mainly to copyright incompatibility.
619         Besides, these days every porting target provides a mkdir function.
620
621         * strnlen.c: Include memory.h, string.h, and/or strings.h as needed.
622         (this snippet comes from src/system.h).
623
624 2000-06-15  Paul Eggert  <eggert@twinsun.com>
625
626         * human.c (adjust_value): New function.
627         (human_readable_inexact): Apply rounding style even when
628         printing approximate values.
629
630 2000-06-14  Paul Eggert  <eggert@twinsun.com>
631
632         * human.c (human_readable_inexact): Allow an input block
633         size that is not a multiple of the output block size, and vice versa.
634         Reported by Piergiorgio Sartor.
635
636 2000-06-14  Paul Eggert  <eggert@twinsun.com>
637
638         * getdate.y (get_date): Apply relative times after time
639         zone indicator, not before.  Reported by Todd A. Jacobs.
640
641 2000-06-13  Jim Meyering  <meyering@lucent.com>
642
643         * Makefile.am (all-local): Depend on lstat.c and stat.c.
644
645         * xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c.
646
647 2000-06-12  Paul Eggert  <eggert@twinsun.com>
648
649         * xstat.in: Include <stdlib.h> in lstat, to declare "free".
650
651 2000-06-04  Paul Eggert  <eggert@twinsun.com>
652
653         * strnlen.c: Include <config.h> if HAVE_CONFIG_H.
654
655 2000-06-04  Jim Meyering  <meyering@lucent.com>
656
657         * getugroups.c (getugroups): Cast -1 to gid_t, for systems like
658         SunOS4.1.4 for which gid_t is an unsigned type.
659
660 2000-06-03  Jim Meyering  <meyering@lucent.com>
661
662         * strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr.
663
664 2000-05-26  Bruno Haible  <haible@clisp.cons.org>
665
666         * Makefile.am (install-exec-local): On systems with glibc-2.1 or
667         newer, don't install charset.alias.
668         * config.charset: Change the Linux/glibc rules so they become empty
669         on glibc-2.1 or newer.
670
671 2000-06-02  Jim Meyering  <meyering@lucent.com>
672
673         * mountlist.c: Back out last change.  Instead, do this...
674         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the me_dummy
675         member using the same `ignore'-testing code.
676         * mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored
677         fs_type strings.
678         From Mark D. Roth.
679
680 2000-05-29  Jim Meyering  <meyering@lucent.com>
681
682         * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore mounts
683         with the `ignore' attribute.  Based on a patch from Mark D. Roth.
684
685 2000-05-22  Jim Meyering  <meyering@lucent.com>
686
687         * makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block.
688
689 2000-05-18  Jim Meyering  <meyering@lucent.com>
690
691         * hash.c (hash_rehash): Fix a nasty bug: copy the free entry list
692         back, too, since it may have been modified by allocate_entry.
693         (hash_delete): Rewrite to use neither the assignment operator
694         nor the comma operator in an if-expression.
695
696 2000-05-15  Paul Eggert  <eggert@twinsun.com>
697
698         * closeout.c:
699         <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO):
700         Remove; no longer needed.
701         "quotearg.h": Add include.
702         (file_name): Do not bother to explicitly initialize to NULL; it's less
703         efficient on some hosts.
704         (close_stdout_status): Remove test as to whether stdout was already
705         closed; it breaks for the case "echo x | sort >&-".
706         Quote file name colons.
707         Do not assume that _("write error") lacks format strings.
708
709 2000-05-15  Jim Meyering  <meyering@lucent.com>
710
711         * version-etc.c (version_etc_copyright): Update the copyright string
712         used in all --version output.
713
714 2000-05-14  Jim Meyering  <meyering@lucent.com>
715
716         * closeout.c (close_stdout_set_file_name): New function.
717         (close_stdout_status): Use new file-scoped global.
718         Return right away if fstat says the stdout file descriptor is invalid.
719         * closeout.h (close_stdout_set_file_name): Declare.
720
721 2000-05-10  Jim Meyering  <meyering@lucent.com>
722
723         * closeout.c [default_exit_status]: New file-scoped variable.
724         (close_stdout_set_status): New function.
725         * closeout.h (close_stdout_set_status): Declare.
726
727 2000-05-08  Jim Meyering  <meyering@lucent.com>
728
729         * long-options.c: Don't include closeout.h.
730         (parse_long_options): Don't call close_stdout for --version.
731
732 2000-05-06  Jim Meyering  <meyering@lucent.com>
733
734         * strnlen.c: Undefine __strnlen and strnlen.
735         [!weak_alias]: Define __strnlen to strnlen.
736
737         * atexit.c: New file, from libiberty.
738
739 2000-05-06  Jim Meyering  <meyering@lucent.com>
740
741         * closeout.c (close_stdout_status): Also check for errors on the
742         stderr stream.
743
744 2000-05-05  Bruno Haible  <haible@clisp.cons.org>
745
746         * localcharset.c (get_charset_aliases): Use malloc, realloc and memcpy
747         instead of xmalloc, xrealloc, path_concat.
748         (locale_charset): Treat empty environment variables as absent.
749         (DIRECTORY_SEPARATOR, ISSLASH): New macros.
750
751 2000-05-04  Jim Meyering  <meyering@lucent.com>
752
753         * getopt.c: Update from glibc.
754         * obstack.c: Likewise.
755         * obstack.h: Likewise.
756         * regex.c: Likewise.  NB: K&R compiler support is dropped for this file
757
758         * regex.h: Likewise.
759         * strndup.c: Likewise.
760         * strnlen.c: New file, from glibc.
761
762 2000-05-01  Jim Meyering  <meyering@lucent.com>
763
764         * full-write.c (full_write): Remove `FIXME' part of comment.
765
766 2000-04-29  Jim Meyering  <meyering@lucent.com>
767
768         * path-concat.c: Declare strdup only if it's not defined.
769         * canon-host.c: Likewise.
770
771 2000-04-28  Jim Meyering  <meyering@lucent.com>
772
773         * rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to avoid
774         redefinition warning on some systems (HPUX).  Otherwise, regex.h is
775         included first, then limits.h is included by locale.h by libintl.h.
776         From John David Anglin.
777
778 2000-04-25  Jim Meyering  <meyering@lucent.com>
779
780         * makepath.c (S_IRWXUGO): Define.
781         (make_path): Always perform explicit chmod if MODE specifies any
782         of the `special' permission bits.  Prompted by a bug report against
783         install from Mate Wierdl and Joost van Baal.
784
785 2000-04-18  Jim Meyering  <meyering@lucent.com>
786
787         * README: New file.
788
789         * getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define
790         getpagesize.  For BeOS.  Based on a patch from Bruno Haible.
791
792 2000-04-17  Jim Meyering  <meyering@lucent.com>
793
794         * strftime.c (my_strftime) [strftime]: Declare strftime here, since
795         the definition of it to rpl_strftime also defined-away the system's
796         declaration.
797
798 2000-04-15  Jim Meyering  <meyering@lucent.com>
799
800         Use `C' to denote so-called `contiguous' files, the same way
801         that tar does.
802         * filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define.
803         (ftypelet): Use S_ISCTG.
804         From Michael Deutschmann.
805
806 2000-04-14  Jim Meyering  <meyering@lucent.com>
807
808         * strftime.c (my_strftime) [#ifdef strftime]: Declare strftime.
809
810 2000-04-08  Jim Meyering  <meyering@lucent.com>
811
812         * Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3
813         names don't conflict.  Reported by Eli Zaretskii.
814
815 2000-03-28  Bruno Haible  <haible@clisp.cons.org>
816
817         * unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv
818         bug.  Deal with the different error behavior of Irix iconv.
819
820 2000-04-07  Jim Meyering  <meyering@lucent.com>
821
822         * putenv.c: Move inclusion of errno.h so it follows that of sys/types.h,
823         to work around system header problems on AIX 3.2.5.  From Bruno Haible.
824
825 2000-04-05  Jim Meyering  <meyering@lucent.com>
826
827         Portability tweaks required for ultrix4.3.
828         * readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare getutent.
829         * readutmp.c: Include sys/types.h before sys/stat.h.
830         * canon-host.c: Declare strdup.
831         * path-concat.c: Likewise.
832         From John David Anglin.
833
834 2000-04-04  Jim Meyering  <meyering@lucent.com>
835
836         Be more DOS 8.3-friendly.
837         * ref-add.sin: Renamed from ref-add.sed.in.
838         * ref-del.sin: Renamed from ref-del.sed.in.
839         * Makefile.am: Reflect renaming.
840         Reported by Eli Zaretskii.
841
842         Use a temporary file name that won't clash with `charset.alias'
843         in the DOS 8.3 name space.
844         * Makefile.am (charset_tmp): Define.
845         (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t.
846         (uninstall-local): Likewise.
847         Reported by Eli Zaretskii.
848
849 2000-03-29  Paul Eggert  <eggert@twinsun.com>
850
851         * time/strftime.c (my_strftime): Make sure we call the system
852         strftime, not ourselves, when invoking the underlying strftime.
853
854 2000-03-24  Jim Meyering  <meyering@lucent.com>
855
856         * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in.
857         (charset_alias): Define.
858         (install-exec-local): Factor out common code.
859         (uninstall-local): Split lines longer than 80.
860         (ref-add.sed, ref-del.sed): Remove rules... (do the following instead)
861         (SUFFIXES): Define.
862         (.sed.in.sed): New rule.  Don't redirect directly to $@.
863         (CLEANFILES): Add ref-add.sed and ref-del.sed.
864
865 2000-03-19  Bruno Haible  <haible@clisp.cons.org>
866
867         * config.charset: Output a line containing "Packages using this file".
868         * ref-add.sed.in, ref-del.sed.in: New files.
869         * Makefile.am (install-exec-local, uninstall-local, ref-add.sed,
870         ref-del.sed): New rules.
871
872 2000-03-17  Jim Meyering  <meyering@lucent.com>
873
874         * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H.
875         Otherwise, include <strings.h>
876
877 2000-03-17  Bruno Haible  <haible@clisp.cons.org>
878
879         * unicodeio.c (utf8_wctomb): New function.
880         (print_unicode_char): Pass the Unicode character to iconv in UTF-8
881         format instead of in UCS-4 with platform dependent endianness.
882
883 2000-03-07  Paul Eggert  <eggert@twinsun.com>
884
885         * savedir.c (savedir): Work even if directory size is
886         negative; this can happen with some screwy NFS configurations.
887
888 2000-03-06  Jim Meyering  <meyering@lucent.com>
889
890         * localcharset.c (get_charset_aliases): Don't try to free file_name
891         if it's NULL (because we ran out of memory).  From Bruno Haible.
892
893 2000-03-05  Jim Meyering  <meyering@lucent.com>
894
895         * localcharset.c ("path-concat.h"): Include.
896         (get_charset_aliases): Use path_concat instead of ANSI string
897         concatenation.
898
899         * unicodeio.h (PARAMS): Define.
900         Use it to guard prototype.
901
902 2000-03-04  Jim Meyering  <meyering@lucent.com>
903
904         * Makefile.am (install-exec-local): Create $(libdir) before installing
905         into it.
906         (uninstall-local): Uncomment this rule so `make distcheck' works
907         once again.
908
909         * unicodeio.c (<errno.h>): Include it.
910         (errno): Declare if not defined.
911
912         * localcharset.c: Add Bruno's comment justifying use of volatile.
913
914         * config.charset: New version, incorporating remarks from a linux
915         i18n mailing list.  From Bruno Haible.
916
917 2000-03-02  Jim Meyering  <meyering@lucent.com>
918
919         * Makefile.am (EXTRA_DIST): Add config.charset.
920
921 2000-03-01  Jim Meyering  <meyering@lucent.com>
922
923         * localcharset.c: Guard some #includes with `#if HAVE_...'.
924         * unicodeio.c: Likewise.
925
926 2000-02-02  Bruno Haible  <haible@clisp.cons.org>
927
928         * config.charset: New file.
929         * localcharset.c: New file.
930         * unicodeio.h, unicodeio.c: New files.
931         * Makefile.am (DEFS): Add -DLIBDIR=...
932         (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c.
933         (noinst_HEADERS): Add unicodeio.h.
934         (all-local, install-exec-local, charset.alias): New targets.
935
936 2000-02-28  Paul Eggert  <eggert@twinsun.com>
937
938         * quotearg.c (ALERT_CHAR): New macro.
939         (quotearg_buffer_restyled): Use it.
940
941 2000-02-27  Jim Meyering  <meyering@lucent.com>
942
943         * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/.
944         Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'.
945
946         * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H',
947         not `#if STDC_HEADERS'.
948         Declare malloc if needed.
949
950         * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..'
951         now that autoconf always defines the HAVE_DECL_ symbols.
952         * human.c: Likewise.
953         * same.c: Likewise.
954         * strtoumax.c: Likewise.
955
956         * backupfile.c: Arrange for cpp to fail if the configure-time
957         declaration check was not run.
958         * hash.c: Likewise.
959         * human.c: Likewise.
960         * same.c: Likewise.
961         * strtoumax.c: Likewise.
962
963         * userspec.c (parse_user_spec): If there is no `:' but there is a `.',
964         then first look up the entire `.'-containing string as a login name.
965
966 2000-02-18  Paul Eggert  <eggert@twinsun.com>
967
968         * getdate.y: Handle two-digit years with leading zeros correctly.
969         (textint): New typedef.
970         (parser_control): Member year changed from int to textint.
971         All uses changed.
972         (YYSTYPE): Removed; replaced by %union with int and textint members.
973         (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN,
974         tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER,
975         tYEAR_UNIT, tZONE, o_merid): Now of type <intval>.
976         (tSNUMBER, tUNUMBER): Now of type <textintval>.
977         (date, number, to_year): Use width of number in digits, not its value,
978         to determine whether it's a 2-digit year, or a 2-digit time.
979         (yylex): Store number of digits of numeric tokens.
980         Reported by John Kendall.
981
982         (parser_control): Changed from struct parser_control to typedef (for
983         consistency).  All uses changed.
984
985         (tID): Removed; not used.
986         (yylex): Return '?' for unknown identifiers, rather than (unused) tID.
987
988 2000-02-14  Paul Eggert  <eggert@twinsun.com>
989
990         * getpagesize.h (getpagesize): Port to VMS for Alpha;
991         adapted from changes to grep getpagesize.h by Martin P.J. Zinser.
992
993 2000-02-12  Jim Meyering  <meyering@lucent.com>
994
995         * userspec.c (ISDIGIT): Define it.
996         (isdigit): Remove definition.
997         (is_number): Use ISDIGIT, not isdigit.
998         <libintl.h>: Include.
999         (_ and N_): Define.
1000         (parse_user_spec): Mark translatable strings.
1001
1002 2000-02-10  Jim Meyering  <meyering@lucent.com>
1003
1004         With these changes, nanosleep.[ch] are finally enough like the other
1005         lib/* replacement files to compile on a few more losing systems.
1006
1007         * nanosleep.h: Don't include config.h.
1008         Remove prototype from declaration of nanosleep.
1009         (PARAMS): Remove now-unneeded definition.
1010         * nanosleep.c: #undef nanosleep.
1011         (rpl_nanosleep): Rename from nanosleep.
1012
1013 2000-02-03  Jim Meyering  <meyering@lucent.com>
1014
1015         * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION',
1016         rather than with `#if HAVE_UTMPNAME'.
1017
1018 2000-02-01  Jim Meyering  <meyering@lucent.com>
1019
1020         * readutmp.h (UT_USER): Add parens.  From Andreas Schwab.
1021
1022 2000-01-31  Jim Meyering  <meyering@lucent.com>
1023
1024         * nanosleep.h (nanosleep): Guard declaration with
1025         `#if ! HAVE_DECL_NANOSLEEP'.
1026         Without this, OFS gets a redeclaration error for rpl_nanosleep, due to
1027         the declaration in that vendor's sys/timers.h.
1028         Reported by Christian Krackowizer.
1029
1030         * quotearg.c (ISASCII): Add #undef and move definition to follow
1031         inclusion of wctype.h to work around solaris2.6 namespace pollution.
1032         (ISPRINT): Likewise.
1033         Reported by Tom Tromey.
1034
1035 2000-01-30  Jim Meyering  <meyering@lucent.com>
1036
1037         * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding
1038         uses of ->ut_name.  The latter doesn't work with new Linux header files
1039         where only utmpx.ut_user is declared.
1040
1041         * readutmp.h (UT_USER): Define.
1042
1043 2000-01-23  Jim Meyering  <meyering@lucent.com>
1044
1045         * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of
1046         obstack.c.
1047
1048 2000-01-22  Jim Meyering  <meyering@lucent.com>
1049
1050         * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul.
1051         [! HAVE_DECL_STRTOULL]: Declare strtoull.
1052         Required for some AIX systems.  Reported by Christian Krackowizer.
1053         [TESTING] (main): New function.
1054
1055         1997-10-17  Eli Zaretskii  <eliz@is.elta.co.il>
1056         * dirname.c (dir_name): Support for DOS-style file names with drive
1057         letters.
1058
1059         * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint.
1060
1061         * strverscmp.c (ISDIGIT): Define.
1062         (strverscmp): Use ISDIGIT, not isdigit.
1063
1064 2000-01-17  Paul Eggert  <eggert@twinsun.com>
1065
1066         * nanosleep.c (nanosleep):
1067         Don't use SA_INTERRUPT to decide whether to call sigaction, as
1068         POSIX.1 doesn't require SA_INTERRUPT and some systems
1069         (e.g. Solaris 7) don't define it.  Use SA_NOCLDSTOP instead;
1070         it's been part of POSIX.1 since day 1 (in 1988).
1071
1072 2000-01-17  Jim Meyering  <meyering@lucent.com>
1073
1074         * interlock: Remove unused file.  Reported by François Pinard.
1075
1076 2000-01-16  Paul Eggert  <eggert@twinsun.com>
1077
1078         * quotearg.c (quotearg_buffer_restyled): Do not quote
1079         alert, backslash, formfeed, and vertical tab unnecessarily in
1080         shell quoting style.
1081
1082 Local Variables:
1083 version-control: never
1084 End: