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