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