summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2003-10-02*** empty log message ***Jim Meyering
2003-10-02Ensure that du can process a hierarchyJim Meyering
of depth 400 while using no more than 50KB of stack space.
2003-10-01*** empty log message ***Jim Meyering
2003-10-01(print_news_deltas): New function, extracted from main.Jim Meyering
(main): Make `news_file' an array. Use '...=s' => \@var for --news and --url-directory specs. Before there were a couple of problems.
2003-09-30*** empty log message ***Jim Meyering
2003-09-30(tm_diff) [! HAVE_TM_GMTOFF]: Fix arg typo in previous patch.Jim Meyering
2003-09-28.Jim Meyering
2003-09-28.Jim Meyering
2003-09-28*** empty log message ***Jim Meyering
2003-09-28(sc_cast_of_alloca_return_value): New rule.Jim Meyering
(syntax-check-rules): Add it.
2003-09-28*** empty log message ***Jim Meyering
2003-09-28(sc_cast_of_x_alloc_return_value): Also check for alloca casts.Jim Meyering
2003-09-28Remove unnecessary casts of alloca, since now it's guaranteed to be (void *).Jim Meyering
2003-09-28Remove unnecessary casts of alloca, since now it's guaranteed to be (void *).Jim Meyering
2003-09-28(ASSIGN_STRDUPA):Jim Meyering
Remove unnecessary casts of alloca, since now it's guaranteed to be (void *).
2003-09-28Remove unnecessary casts of alloca, since now it's guaranteed to be (void *).Jim Meyering
2003-09-28Remove unnecessary casts of alloca, since now it's guaranteed to be (void *).Jim Meyering
2003-09-28Remove unnecessary cast of alloca, since now it's guaranteed to be (void *).Jim Meyering
2003-09-28Remove unnecessary cast of alloca, since now it's guaranteed to be (void *).Jim Meyering
2003-09-28Minor efficiency tweak.Jim Meyering
(PATH_BASENAME_CONCAT): Use memcpy rather than strcpy. (do_link): Likewise.
2003-09-28*** empty log message ***Jim Meyering
2003-09-28Update from gnulib.Jim Meyering
2003-09-28(Translating): Correct typo in menu description.Jim Meyering
2003-09-28*** empty log message ***Jim Meyering
2003-09-27sync from gnulib -- just changes commentsJim Meyering
2003-09-27*** empty log message ***Jim Meyering
2003-09-27*** empty log message ***Jim Meyering
2003-09-27Don't exhaust virtual memory when processing large inputs.Jim Meyering
Fix this by removing csplit's internal free-list management; instead rely on malloc for that. (free_list): Remove global. (clear_all_line_control): Remove function. (get_new_buffer): Always use create_new_buffer to obtain a new buffer, rather than searching free_list. (free_buffer): Just call free.
2003-09-27*** empty log message ***Jim Meyering
2003-09-26.Jim Meyering
2003-09-26*** empty log message ***Jim Meyering
2003-09-26Also list `chattr' in SEE ALSO section.Jim Meyering
2003-09-26*** empty log message ***Jim Meyering
2003-09-25*** empty log message ***Jim Meyering
2003-09-25Don't invoke AC_AIX or AC_MINIX explicitly, nowJim Meyering
that we use gl_USE_SYSTEM_EXTENSIONS, since it AC_REQUIREs them.
2003-09-25*** empty log message ***Jim Meyering
2003-09-24.Jim Meyering
2003-09-24(check_and_close, dump, dump_strings): Don't report bogus errno valueJim Meyering
after ferror discovers an output error. We don't know the proper errno value, since it might have been caused by any of a whole bunch of calls, and it might have been trashed in the meantime. Fixing this problem will require much more extensive changes; in the meantime just say "write error". (skip): If a read fails, don't retry it later, so that we report the proper errno.
2003-09-23.Jim Meyering
2003-09-23(TESTS): Add deref-args.Jim Meyering
2003-09-23*** empty log message ***Jim Meyering
2003-09-23(get_line): Report error right away if I/O fails,Jim Meyering
so that the proper errno value is used.
2003-09-23*** empty log message ***Jim Meyering
2003-09-23(close_output_file): Don't report bogus errno valueJim Meyering
after ferror discovers an output error. We don't know the proper errno value, since it might have been caused by any of a whole bunch of calls, and it might have been trashed in the meantime. Fixing this problem will require much more extensive changes; in the meantime just say "write error".
2003-09-23(paste_serial): Save errno after input error,Jim Meyering
to report proper errno value. Based on a patch from Paul Eggert.
2003-09-23(fold_file): Save errno after input error, to report proper errno value.Jim Meyering
2003-09-23(compare_files): Save errno after input error, to report proper errno value.Jim Meyering
2003-09-23(unexpand): Save errno after input error, to report proper errno value.Jim Meyering
2003-09-23*** empty log message ***Jim Meyering
2003-09-23(tee): Adjust fwrite arguments so that the returnJim Meyering
value is the number of bytes written.