2691
|
1 2000-07-02 Jim Meyering <meyering@lucent.com> |
|
2 |
|
3 * quotearg.c (mbstate_t): Don't define here. |
|
4 |
2688
|
5 2000-07-02 Jim Meyering <meyering@lucent.com> |
|
6 |
|
7 * nanosleep.c (SIGCONT): Define if not already defined. |
|
8 |
2678
|
9 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
|
10 |
|
11 * mountlist.c: Use MOUNTED_FS_STAT_DEV instead of MOUNTED_NEXT_DEV, |
|
12 per change in ../m4/ls-mntd-fs.m4. |
|
13 (read_filesystem_list): Ignore symbolic links. |
|
14 |
2668
|
15 2000-06-29 Jim Meyering <meyering@lucent.com> |
|
16 |
2672
|
17 * same.c: Include <string.h> or <strings.h>, as appropriate, |
|
18 for declaration of strcmp. |
|
19 |
2670
|
20 * long-options.c: Include <stdlib.h>, for declaration of exit. |
|
21 |
2668
|
22 * mountlist.c (fsp_to_string) [HAVE_F_FSTYPENAME_IN_STATFS]: |
|
23 Avoid warning by casting result to `char *' to remove `const'. |
|
24 |
2662
|
25 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
|
26 |
|
27 * Makefile.am (libfetish_a_SOURCES): Remove readutmp.c. |
|
28 |
2659
|
29 2000-06-26 Paul Eggert <eggert@twinsun.com> |
|
30 |
|
31 savedir now sets errno on failure and invokes xmalloc to get memory. |
|
32 Fix a couple of other minor bugs while we're at it. |
|
33 |
|
34 * savedir.c (<unistd.h>): Do not include; there's no need. |
|
35 (NAMLEN): Remove macro. |
|
36 (malloc, realloc): Remove decls. |
|
37 (stpcpy): Likewise. |
|
38 ("xalloc.h"): Include. |
|
39 (NAME_SIZE_DEFAULT): New macro. |
|
40 (savedir): Use xmalloc / xrealloc to allocate memory. |
|
41 Use NAME_SIZE_DEFAULT if name_size is negative or overflows to zero. |
|
42 Skip "" directory entries. |
|
43 Use strlen to calculate directory entry length, since the old method |
|
44 is rarely used these days and isn't worth supporting. |
|
45 Don't use a pointer after freeing it. |
|
46 Check for integer overflow when calculating allocation size. |
|
47 Use memcpy to copy entries, instead of stpcpy. |
|
48 Set errno properly when returning NULL. |
|
49 Check for readdir error. |
|
50 |
2657
|
51 2000-06-26 Jim Meyering <meyering@lucent.com> |
|
52 |
|
53 * posixtm.c [HAVE_STDLIB_H]: Include stdlib.h, for decl of abort. |
|
54 |
2655
|
55 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
|
56 |
|
57 * getusershell.c (xmalloc, xrealloc): Remove functions. |
|
58 Include xalloc.h. |
|
59 Don't include <stdlib.h>. Don't declare malloc, realloc. |
|
60 |
2651
|
61 2000-06-23 Bruno Haible <haible@clisp.cons.org> |
|
62 |
|
63 * unicodeio.c (print_unicode_char): Work around ansi2knr deficiency. |
|
64 |
2644
|
65 2000-06-24 Jim Meyering <meyering@lucent.com> |
|
66 |
|
67 * error.c [!HAVE_DECL_STRERROR_R]: Declare strerror_r. |
|
68 |
2636
|
69 2000-06-21 Jim Meyering <meyering@lucent.com> |
|
70 |
|
71 * getpass.c: New file, from Bruno Haible. Required for BeOS. |
|
72 |
2640
|
73 2000-06-19 Paul Eggert <eggert@twinsun.com> |
|
74 |
|
75 * quotearg.c: Include <wctype.h> after <wchar.h>, for Solaris 2.5. |
|
76 (mbrtowc, mbstate_t): Define substitutes if |
|
77 HAVE_MBRTOWC && HAVE_WCHAR_H && !HAVE_MBSTATE_T_OBJECT. |
|
78 (iswprint): Define to 1 if !defined iswprint && !HAVE_ISWPRINT, |
|
79 not if ! (HAVE_MBRTOWC && HAVE_WCHAR_H). |
|
80 |
2628
|
81 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
|
82 |
|
83 * xgetcwd.c (xgetcwd): If the required pathname length is smaller |
|
84 than 1024, return a memory chunk of least possible size, instead |
|
85 of size PATH_MAX + 2. In the loop, increment the size proportionally. |
|
86 Use free/xmalloc instead of xrealloc to avoid copying for very long |
|
87 paths. |
|
88 |
2626
|
89 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
|
90 |
|
91 * canon-host.c (canon_host): Use malloc and memcpy to copy an |
|
92 address, not strdup. Include <stdlib.h> and don't declare free(). |
|
93 |
2624
|
94 2000-06-17 Bruno Haible <haible@clisp.cons.org> |
|
95 |
|
96 * path-concat.c (path_concat): Don't access dir[-1] if dir is |
|
97 the empty string. |
|
98 |
2621
|
99 2000-06-21 Jim Meyering <meyering@lucent.com> |
|
100 |
|
101 * Makefile.am (libfetish_a_SOURCES): Add getstr.c. |
|
102 (noinst_HEADERS): Add getstr.h. |
|
103 |
|
104 * getline.c (getstr): Move into a separate file. |
|
105 * getstr.c (getstr): New file, extracted from getline.c, with |
|
106 the following changes: new parameter, delim2; both delim[12] |
|
107 parameters have type `int', not `char'. The latter would lose |
|
108 with 8-bit delimiters. |
|
109 * getstr.h: New file. |
|
110 |
2611
|
111 2000-06-19 Jim Meyering <meyering@lucent.com> |
|
112 |
|
113 * getloadavg.c [HAVE_NLIST_H] (NLIST_STRUCT): Define. |
|
114 |
2602
|
115 2000-06-18 Jim Meyering <meyering@lucent.com> |
|
116 |
2608
|
117 * mkdir.c: Remove file, due mainly to copyright incompatibility. |
|
118 Besides, these days every porting target provides a mkdir function. |
|
119 |
2606
|
120 * strnlen.c: Include memory.h, string.h, and/or strings.h as needed. |
|
121 (this snippet comes from src/system.h). |
|
122 |
2594
|
123 2000-06-15 Paul Eggert <eggert@twinsun.com> |
|
124 |
2640
|
125 * human.c (adjust_value): New function. |
2594
|
126 (human_readable_inexact): Apply rounding style even when |
|
127 printing approximate values. |
|
128 |
2591
|
129 2000-06-14 Paul Eggert <eggert@twinsun.com> |
|
130 |
2640
|
131 * human.c (human_readable_inexact): Allow an input block |
2591
|
132 size that is not a multiple of the output block size, and vice versa. |
2592
|
133 Reported by Piergiorgio Sartor. |
2591
|
134 |
2589
|
135 2000-06-14 Paul Eggert <eggert@twinsun.com> |
|
136 |
2640
|
137 * getdate.y (get_date): Apply relative times after time |
2589
|
138 zone indicator, not before. Reported by Todd A. Jacobs. |
|
139 |
2585
|
140 2000-06-13 Jim Meyering <meyering@lucent.com> |
|
141 |
2591
|
142 * Makefile.am (all-local): Depend on lstat.c and stat.c. |
|
143 |
2585
|
144 * xstat.in [!HAVE_DECL_FREE]: Declare free in lstat.c. |
|
145 |
2583
|
146 2000-06-12 Paul Eggert <eggert@twinsun.com> |
|
147 |
|
148 * xstat.in: Include <stdlib.h> in lstat, to declare "free". |
|
149 |
2575
|
150 2000-06-04 Paul Eggert <eggert@twinsun.com> |
|
151 |
2583
|
152 * strnlen.c: Include <config.h> if HAVE_CONFIG_H. |
2575
|
153 |
2573
|
154 2000-06-04 Jim Meyering <meyering@lucent.com> |
|
155 |
|
156 * getugroups.c (getugroups): Cast -1 to gid_t, for systems like |
|
157 SunOS4.1.4 for which gid_t is an unsigned type. |
|
158 |
2569
|
159 2000-06-03 Jim Meyering <meyering@lucent.com> |
|
160 |
|
161 * strnlen.c [!HAVE_DECL_MEMCHR]: Declare memchr. |
|
162 |
2559
|
163 2000-05-26 Bruno Haible <haible@clisp.cons.org> |
|
164 |
|
165 * Makefile.am (install-exec-local): On systems with glibc-2.1 or |
|
166 newer, don't install charset.alias. |
|
167 * config.charset: Change the Linux/glibc rules so they become empty |
|
168 on glibc-2.1 or newer. |
|
169 |
2554
|
170 2000-06-02 Jim Meyering <meyering@lucent.com> |
|
171 |
|
172 * mountlist.c: Back out last change. Instead, do this... |
|
173 * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Set the me_dummy |
|
174 member using the same `ignore'-testing code. |
|
175 * mountlist.h (ME_DUMMY): Add `autofs' to the list of ignored |
|
176 fs_type strings. |
|
177 From Mark D. Roth. |
|
178 |
2549
|
179 2000-05-29 Jim Meyering <meyering@lucent.com> |
|
180 |
|
181 * mountlist.c (read_filesystem_list) [MOUNTED_VMOUNT]: Ignore mounts |
|
182 with the `ignore' attribute. Based on a patch from Mark D. Roth. |
|
183 |
2548
|
184 2000-05-22 Jim Meyering <meyering@lucent.com> |
|
185 |
|
186 * makepath.c: Remove old, now-unnecessary `#ifdef __MSDOS__' block. |
|
187 |
2525
|
188 2000-05-18 Jim Meyering <meyering@lucent.com> |
|
189 |
|
190 * hash.c (hash_rehash): Fix a nasty bug: copy the free entry list |
|
191 back, too, since it may have been modified by allocate_entry. |
|
192 (hash_delete): Rewrite to use neither the assignment operator |
|
193 nor the comma operator in an if-expression. |
|
194 |
2523
|
195 2000-05-15 Paul Eggert <eggert@twinsun.com> |
|
196 |
2583
|
197 * closeout.c: |
2523
|
198 <sys/stat.h>, <sys/types.h>, <unistd.h>, (STDOUT_FILENO): |
|
199 Remove; no longer needed. |
|
200 "quotearg.h": Add include. |
|
201 (file_name): Do not bother to explicitly initialize to NULL; it's less |
|
202 efficient on some hosts. |
|
203 (close_stdout_status): Remove test as to whether stdout was already |
|
204 closed; it breaks for the case "echo x | sort >&-". |
|
205 Quote file name colons. |
|
206 Do not assume that _("write error") lacks format strings. |
|
207 |
2518
|
208 2000-05-15 Jim Meyering <meyering@lucent.com> |
|
209 |
|
210 * version-etc.c (version_etc_copyright): Update the copyright string |
|
211 used in all --version output. |
|
212 |
2521
|
213 2000-05-14 Jim Meyering <meyering@lucent.com> |
|
214 |
|
215 * closeout.c (close_stdout_set_file_name): New function. |
|
216 (close_stdout_status): Use new file-scoped global. |
|
217 Return right away if fstat says the stdout file descriptor is invalid. |
|
218 * closeout.h (close_stdout_set_file_name): Declare. |
|
219 |
2515
|
220 2000-05-10 Jim Meyering <meyering@lucent.com> |
|
221 |
|
222 * closeout.c [default_exit_status]: New file-scoped variable. |
|
223 (close_stdout_set_status): New function. |
|
224 * closeout.h (close_stdout_set_status): Declare. |
|
225 |
2508
|
226 2000-05-08 Jim Meyering <meyering@lucent.com> |
|
227 |
|
228 * long-options.c: Don't include closeout.h. |
|
229 (parse_long_options): Don't call close_stdout for --version. |
|
230 |
2499
|
231 2000-05-06 Jim Meyering <meyering@lucent.com> |
|
232 |
2504
|
233 * strnlen.c: Undefine __strnlen and strnlen. |
|
234 [!weak_alias]: Define __strnlen to strnlen. |
|
235 |
2499
|
236 * atexit.c: New file, from libiberty. |
|
237 |
|
238 2000-05-06 Jim Meyering <meyering@lucent.com> |
|
239 |
|
240 * closeout.c (close_stdout_status): Also check for errors on the |
|
241 stderr stream. |
|
242 |
2488
|
243 2000-05-05 Bruno Haible <haible@clisp.cons.org> |
|
244 |
|
245 * localcharset.c (get_charset_aliases): Use malloc, realloc and memcpy |
|
246 instead of xmalloc, xrealloc, path_concat. |
|
247 (locale_charset): Treat empty environment variables as absent. |
|
248 (DIRECTORY_SEPARATOR, ISSLASH): New macros. |
|
249 |
2467
|
250 2000-05-04 Jim Meyering <meyering@lucent.com> |
|
251 |
|
252 * getopt.c: Update from glibc. |
2478
|
253 * obstack.c: Likewise. |
|
254 * obstack.h: Likewise. |
2473
|
255 * regex.c: Likewise. NB: K&R compiler support is dropped for this file |
|
256 |
|
257 * regex.h: Likewise. |
2470
|
258 * strndup.c: Likewise. |
|
259 * strnlen.c: New file, from glibc. |
2467
|
260 |
2461
|
261 2000-05-01 Jim Meyering <meyering@lucent.com> |
|
262 |
|
263 * full-write.c (full_write): Remove `FIXME' part of comment. |
|
264 |
2447
|
265 2000-04-29 Jim Meyering <meyering@lucent.com> |
|
266 |
|
267 * path-concat.c: Declare strdup only if it's not defined. |
|
268 * canon-host.c: Likewise. |
|
269 |
2445
|
270 2000-04-28 Jim Meyering <meyering@lucent.com> |
|
271 |
|
272 * rpmatch.c [HAVE_LIMITS_H]: Include limits.h before regex.h to avoid |
|
273 redefinition warning on some systems (HPUX). Otherwise, regex.h is |
|
274 included first, then limits.h is included by locale.h by libintl.h. |
|
275 From John David Anglin. |
|
276 |
2440
|
277 2000-04-25 Jim Meyering <meyering@lucent.com> |
|
278 |
|
279 * makepath.c (S_IRWXUGO): Define. |
|
280 (make_path): Always perform explicit chmod if MODE specifies any |
2442
|
281 of the `special' permission bits. Prompted by a bug report against |
|
282 install from Mate Wierdl and Joost van Baal. |
2440
|
283 |
2435
|
284 2000-04-18 Jim Meyering <meyering@lucent.com> |
|
285 |
2440
|
286 * README: New file. |
|
287 |
2435
|
288 * getpagesize.h [!getpagesize && HAVE_OS_H && B_PAGE_SIZE]: Define |
|
289 getpagesize. For BeOS. Based on a patch from Bruno Haible. |
|
290 |
2431
|
291 2000-04-17 Jim Meyering <meyering@lucent.com> |
|
292 |
|
293 * strftime.c (my_strftime) [strftime]: Declare strftime here, since |
|
294 the definition of it to rpl_strftime also defined-away the system's |
|
295 declaration. |
|
296 |
2427
|
297 2000-04-15 Jim Meyering <meyering@lucent.com> |
|
298 |
|
299 Use `C' to denote so-called `contiguous' files, the same way |
|
300 that tar does. |
|
301 * filemode.c (S_ISCTG) [!S_ISCTG && S_IFCTG]: Define. |
|
302 (ftypelet): Use S_ISCTG. |
|
303 From Michael Deutschmann. |
|
304 |
|
305 2000-04-14 Jim Meyering <meyering@lucent.com> |
|
306 |
|
307 * strftime.c (my_strftime) [#ifdef strftime]: Declare strftime. |
|
308 |
2416
|
309 2000-04-08 Jim Meyering <meyering@lucent.com> |
|
310 |
|
311 * Makefile.am (charset.alias): Use t-$@, not $@-t so the DOS 8.3 |
|
312 names don't conflict. Reported by Eli Zaretskii. |
|
313 |
2413
|
314 2000-03-28 Bruno Haible <haible@clisp.cons.org> |
|
315 |
|
316 * unicodeio.c (print_unicode_char): Avoid triggering Solaris iconv |
2431
|
317 bug. Deal with the different error behavior of Irix iconv. |
2413
|
318 |
|
319 2000-04-07 Jim Meyering <meyering@lucent.com> |
|
320 |
|
321 * putenv.c: Move inclusion of errno.h so it follows that of sys/types.h, |
|
322 to work around system header problems on AIX 3.2.5. From Bruno Haible. |
|
323 |
2406
|
324 2000-04-05 Jim Meyering <meyering@lucent.com> |
|
325 |
|
326 Portability tweaks required for ultrix4.3. |
|
327 * readutmp.h [HAVE_UTMPX_H && !HAVE_DECL_GETUTENT]: Declare getutent. |
|
328 * readutmp.c: Include sys/types.h before sys/stat.h. |
|
329 * canon-host.c: Declare strdup. |
|
330 * path-concat.c: Likewise. |
|
331 From John David Anglin. |
|
332 |
2397
|
333 2000-04-04 Jim Meyering <meyering@lucent.com> |
|
334 |
|
335 Be more DOS 8.3-friendly. |
|
336 * ref-add.sin: Renamed from ref-add.sed.in. |
|
337 * ref-del.sin: Renamed from ref-del.sed.in. |
|
338 * Makefile.am: Reflect renaming. |
|
339 Reported by Eli Zaretskii. |
|
340 |
|
341 Use a temporary file name that won't clash with `charset.alias' |
|
342 in the DOS 8.3 name space. |
|
343 * Makefile.am (charset_tmp): Define. |
|
344 (install-exec-local): Use $(charset_tmp) instead of $(charset_alias)-t. |
|
345 (uninstall-local): Likewise. |
|
346 Reported by Eli Zaretskii. |
|
347 |
2379
|
348 2000-03-29 Paul Eggert <eggert@twinsun.com> |
|
349 |
|
350 * time/strftime.c (my_strftime): Make sure we call the system |
|
351 strftime, not ourselves, when invoking the underlying strftime. |
|
352 |
2364
|
353 2000-03-24 Jim Meyering <meyering@lucent.com> |
|
354 |
|
355 * Makefile.am (EXTRA_DIST): Add ref-add.sed.in and ref-del.sed.in. |
|
356 (charset_alias): Define. |
|
357 (install-exec-local): Factor out common code. |
|
358 (uninstall-local): Split lines longer than 80. |
|
359 (ref-add.sed, ref-del.sed): Remove rules... (do the following instead) |
|
360 (SUFFIXES): Define. |
|
361 (.sed.in.sed): New rule. Don't redirect directly to $@. |
|
362 (CLEANFILES): Add ref-add.sed and ref-del.sed. |
|
363 |
|
364 2000-03-19 Bruno Haible <haible@clisp.cons.org> |
|
365 |
|
366 * config.charset: Output a line containing "Packages using this file". |
|
367 * ref-add.sed.in, ref-del.sed.in: New files. |
|
368 * Makefile.am (install-exec-local, uninstall-local, ref-add.sed, |
|
369 ref-del.sed): New rules. |
|
370 |
2353
|
371 2000-03-17 Jim Meyering <meyering@lucent.com> |
|
372 |
|
373 * unicodeio.c (<string.h>): Include only #if HAVE_STRING_H. |
|
374 Otherwise, include <strings.h> |
|
375 |
|
376 2000-03-17 Bruno Haible <haible@clisp.cons.org> |
|
377 |
|
378 * unicodeio.c (utf8_wctomb): New function. |
|
379 (print_unicode_char): Pass the Unicode character to iconv in UTF-8 |
|
380 format instead of in UCS-4 with platform dependent endianness. |
|
381 |
2343
|
382 2000-03-07 Paul Eggert <eggert@twinsun.com> |
|
383 |
2583
|
384 * savedir.c (savedir): Work even if directory size is |
2343
|
385 negative; this can happen with some screwy NFS configurations. |
|
386 |
2348
|
387 2000-03-06 Jim Meyering <meyering@lucent.com> |
|
388 |
|
389 * localcharset.c (get_charset_aliases): Don't try to free file_name |
|
390 if it's NULL (because we ran out of memory). From Bruno Haible. |
|
391 |
2337
|
392 2000-03-05 Jim Meyering <meyering@lucent.com> |
|
393 |
2339
|
394 * localcharset.c ("path-concat.h"): Include. |
|
395 (get_charset_aliases): Use path_concat instead of ANSI string |
|
396 concatenation. |
|
397 |
2337
|
398 * unicodeio.h (PARAMS): Define. |
|
399 Use it to guard prototype. |
|
400 |
2330
|
401 2000-03-04 Jim Meyering <meyering@lucent.com> |
|
402 |
2332
|
403 * Makefile.am (install-exec-local): Create $(libdir) before installing |
|
404 into it. |
2334
|
405 (uninstall-local): Uncomment this rule so `make distcheck' works |
|
406 once again. |
2332
|
407 |
2330
|
408 * unicodeio.c (<errno.h>): Include it. |
|
409 (errno): Declare if not defined. |
|
410 |
|
411 * localcharset.c: Add Bruno's comment justifying use of volatile. |
|
412 |
|
413 * config.charset: New version, incorporating remarks from a linux |
|
414 i18n mailing list. From Bruno Haible. |
|
415 |
|
416 2000-03-02 Jim Meyering <meyering@lucent.com> |
|
417 |
|
418 * Makefile.am (EXTRA_DIST): Add config.charset. |
|
419 |
2309
|
420 2000-03-01 Jim Meyering <meyering@lucent.com> |
|
421 |
|
422 * localcharset.c: Guard some #includes with `#if HAVE_...'. |
|
423 * unicodeio.c: Likewise. |
|
424 |
|
425 2000-02-02 Bruno Haible <haible@clisp.cons.org> |
|
426 |
|
427 * config.charset: New file. |
|
428 * localcharset.c: New file. |
|
429 * unicodeio.h, unicodeio.c: New files. |
|
430 * Makefile.am (DEFS): Add -DLIBDIR=... |
|
431 (libfetish_a_SOURCES): Add localcharset.c and unicodeio.c. |
|
432 (noinst_HEADERS): Add unicodeio.h. |
|
433 (all-local, install-exec-local, charset.alias): New targets. |
|
434 |
2300
|
435 2000-02-28 Paul Eggert <eggert@twinsun.com> |
|
436 |
2583
|
437 * quotearg.c (ALERT_CHAR): New macro. |
2300
|
438 (quotearg_buffer_restyled): Use it. |
|
439 |
2285
|
440 2000-02-27 Jim Meyering <meyering@lucent.com> |
|
441 |
2298
|
442 * strtoumax.c: Fix typo in decl of strtoul: s/long long/long/. |
|
443 Guard declaration of strtoull also with `&& HAVE_UNSIGNED_LONG_LONG'. |
|
444 |
2295
|
445 * backupfile.c: Guard inclusion of stdlib.h with `#if HAVE_STDLIB_H', |
|
446 not `#if STDC_HEADERS'. |
|
447 Declare malloc if needed. |
|
448 |
2290
|
449 * backupfile.c: Use `#if !HAVE_DECL...' instead of `#ifndef HAVE_DECL..' |
|
450 now that autoconf always defines the HAVE_DECL_ symbols. |
|
451 * human.c: Likewise. |
|
452 * same.c: Likewise. |
|
453 * strtoumax.c: Likewise. |
|
454 |
|
455 * backupfile.c: Arrange for cpp to fail if the configure-time |
|
456 declaration check was not run. |
|
457 * hash.c: Likewise. |
|
458 * human.c: Likewise. |
|
459 * same.c: Likewise. |
|
460 * strtoumax.c: Likewise. |
|
461 |
2285
|
462 * userspec.c (parse_user_spec): If there is no `:' but there is a `.', |
|
463 then first look up the entire `.'-containing string as a login name. |
|
464 |
2286
|
465 2000-02-18 Paul Eggert <eggert@twinsun.com> |
|
466 |
2583
|
467 * getdate.y: Handle two-digit years with leading zeros correctly. |
2286
|
468 (textint): New typedef. |
|
469 (parser_control): Member year changed from int to textint. |
|
470 All uses changed. |
|
471 (YYSTYPE): Removed; replaced by %union with int and textint members. |
|
472 (tDAY, tDAY_UNIT, tDAYZONE, tHOUR_UNIT, tID, tLOCAL_ZONE, tMERIDIAN, |
|
473 tMINUTE_UNIT, tMONTH, tMONTH_UNIT tSEC_UNIT, tSNUMBER, tUNUMBER, |
|
474 tYEAR_UNIT, tZONE, o_merid): Now of type <intval>. |
|
475 (tSNUMBER, tUNUMBER): Now of type <textintval>. |
|
476 (date, number, to_year): Use width of number in digits, not its value, |
|
477 to determine whether it's a 2-digit year, or a 2-digit time. |
|
478 (yylex): Store number of digits of numeric tokens. |
|
479 Reported by John Kendall. |
|
480 |
|
481 (parser_control): Changed from struct parser_control to typedef (for |
|
482 consistency). All uses changed. |
|
483 |
|
484 (tID): Removed; not used. |
|
485 (yylex): Return '?' for unknown identifiers, rather than (unused) tID. |
|
486 |
2278
|
487 2000-02-14 Paul Eggert <eggert@twinsun.com> |
|
488 |
2583
|
489 * getpagesize.h (getpagesize): Port to VMS for Alpha; |
2279
|
490 adapted from changes to grep getpagesize.h by Martin P.J. Zinser. |
2278
|
491 |
2274
|
492 2000-02-12 Jim Meyering <meyering@lucent.com> |
|
493 |
|
494 * userspec.c (ISDIGIT): Define it. |
|
495 (isdigit): Remove definition. |
|
496 (is_number): Use ISDIGIT, not isdigit. |
|
497 <libintl.h>: Include. |
|
498 (_ and N_): Define. |
|
499 (parse_user_spec): Mark translatable strings. |
|
500 |
2268
|
501 2000-02-10 Jim Meyering <meyering@lucent.com> |
|
502 |
|
503 With these changes, nanosleep.[ch] are finally enough like the other |
|
504 lib/* replacement files to compile on a few more losing systems. |
|
505 |
|
506 * nanosleep.h: Don't include config.h. |
|
507 Remove prototype from declaration of nanosleep. |
|
508 (PARAMS): Remove now-unneeded definition. |
|
509 * nanosleep.c: #undef nanosleep. |
|
510 (rpl_nanosleep): Rename from nanosleep. |
|
511 |
2245
|
512 2000-02-03 Jim Meyering <meyering@lucent.com> |
|
513 |
|
514 * readutmp.c (read_utmp): Guard with `#ifdef UTMP_NAME_FUNCTION', |
|
515 rather than with `#if HAVE_UTMPNAME'. |
|
516 |
|
517 2000-02-01 Jim Meyering <meyering@lucent.com> |
|
518 |
|
519 * readutmp.h (UT_USER): Add parens. From Andreas Schwab. |
|
520 |
2235
|
521 2000-01-31 Jim Meyering <meyering@lucent.com> |
|
522 |
2240
|
523 * nanosleep.h (nanosleep): Guard declaration with |
|
524 `#if ! HAVE_DECL_NANOSLEEP'. |
2275
|
525 Without this, OFS gets a redeclaration error for rpl_nanosleep, due to |
2240
|
526 the declaration in that vendor's sys/timers.h. |
|
527 Reported by Christian Krackowizer. |
|
528 |
2235
|
529 * quotearg.c (ISASCII): Add #undef and move definition to follow |
|
530 inclusion of wctype.h to work around solaris2.6 namespace pollution. |
|
531 (ISPRINT): Likewise. |
2236
|
532 Reported by Tom Tromey. |
2235
|
533 |
2228
|
534 2000-01-30 Jim Meyering <meyering@lucent.com> |
|
535 |
|
536 * readutmp.c (extract_trimmed_name): Use UT_USER instead of hard-coding |
|
537 uses of ->ut_name. The latter doesn't work with new Linux header files |
|
538 where only utmpx.ut_user is declared. |
|
539 |
|
540 * readutmp.h (UT_USER): Define. |
|
541 |
2193
|
542 2000-01-23 Jim Meyering <meyering@lucent.com> |
|
543 |
|
544 * Makefile.am (libfetish_a_SOURCES): Remove explicit mention of |
|
545 obstack.c. |
|
546 |
2163
|
547 2000-01-22 Jim Meyering <meyering@lucent.com> |
2188
|
548 |
|
549 * strtoumax.c: [! HAVE_DECL_STRTOUL]: Declare strtoul. |
|
550 [! HAVE_DECL_STRTOULL]: Declare strtoull. |
|
551 Required for some AIX systems. Reported by Christian Krackowizer. |
|
552 [TESTING] (main): New function. |
|
553 |
2172
|
554 1997-10-17 Eli Zaretskii <eliz@is.elta.co.il> |
|
555 * dirname.c (dir_name): Support for DOS-style file names with drive |
|
556 letters. |
2163
|
557 |
2185
|
558 * quotearg.c [HAVE_WCTYPE_H]: Include <wctype.h> for decl of iswprint. |
2184
|
559 |
2163
|
560 * strverscmp.c (ISDIGIT): Define. |
|
561 (strverscmp): Use ISDIGIT, not isdigit. |
|
562 |
2152
|
563 2000-01-17 Paul Eggert <eggert@twinsun.com> |
|
564 |
|
565 * nanosleep.c (nanosleep): |
|
566 Don't use SA_INTERRUPT to decide whether to call sigaction, as |
|
567 POSIX.1 doesn't require SA_INTERRUPT and some systems |
|
568 (e.g. Solaris 7) don't define it. Use SA_NOCLDSTOP instead; |
|
569 it's been part of POSIX.1 since day 1 (in 1988). |
|
570 |
2150
|
571 2000-01-17 Jim Meyering <meyering@lucent.com> |
|
572 |
|
573 * interlock: Remove unused file. Reported by Fran�ois Pinard. |
|
574 |
2144
|
575 2000-01-16 Paul Eggert <eggert@twinsun.com> |
|
576 |
2583
|
577 * quotearg.c (quotearg_buffer_restyled): Do not quote |
2144
|
578 alert, backslash, formfeed, and vertical tab unnecessarily in |
|
579 shell quoting style. |
2190
|
580 |
|
581 Local Variables: |
|
582 version-control: never |
|
583 End: |