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