Subject | Hash | Author | Date (UTC) |
---|---|---|---|
remove debug | 919ce1f7b6d80dfdc3c613f898215962985f9c66 | Brock Noland | 2008-04-11 19:22:39 |
sponge fixes | 42c5c5a799502743307b392bf9e7c0205ef85ace | Brock Noland | 2008-04-11 18:16:09 |
better usage message | 73327f97a62619cb8b1a0bc03e5e105839449f9a | Joey Hess | 2008-04-11 04:36:46 |
update changelog | 79c6fe1242a4747c4adbcc9030d2cadc61c1028a | Joey Hess | 2008-04-11 04:35:24 |
convert to new format | 2c8be0fef4c247de0e5511abdbda25e3611b9f8c | Joey Hess | 2008-04-11 04:32:31 |
first pass thru the code | b2174f2df2410bf82fe646bcedd333ddbd7dbf66 | Joey Hess | 2008-04-11 03:49:31 |
make sponge use a temp file if the input is large | 866dfb32b3ba7d0be153608b28dd9f461986251d | Joey Hess | 2008-04-11 03:28:15 |
sponge, ifne: Ensure that suspending/resuming doesn't result in partial writes of the data, by using fwrite() rather than write(). | ddcbf562e3b6bb3a4441cc640c756127be4cf26b | Joey Hess | 2008-04-10 18:11:21 |
sponge: Ensure that suspending/resuming doesn't result in partial writes of the data, by using fwrite() rather than write(). | 71349b5ae83878f4e59fc6517976998150856933 | Joey Hess | 2008-04-10 18:05:25 |
Add ifne, contributed by Javier Merino. | 2fbf7a9636fae8012298901e98e63cc1b32745ee | Joey Hess | 2008-03-20 16:57:08 |
Moreutils: Added ifne | 752a84ae61dd1c37dec9a1cb0d30e8c27db1994a | Javier Merino | 2008-03-20 12:03:26 |
releasing version 0.28 | 33a313d03913e33ca8b8803caeb70baa8486ce32 | Joey Hess | 2008-02-02 22:27:02 |
* Add example to man page about recursive modification of directories. Closes: #390099 | a3627335c84246278d940b250c7d4c61df7595c3 | Joey Hess | 2008-02-02 22:24:39 |
* vidir: Applied patch from Stefan Fritsch (one part of #412176): - Check for control characters (especially newlines) in filenames and error out, since this can greatly confuse the editor or vidir. - If the source of a rename does not exist (and thus the rename will fail anyway), vidir should not move an existing target file to a tmpfile. - If a directory is renamed, vidir should take that into account when renaming files in this directory. - If a directory name is passed as name/ to vidir, vidir should not add second slash after the name. * vidir: Add support for unlinking directories. To recursivly delete a directory and its contents, pipe find to vidir, and delete the directory and its contents in the editor. Closes: #412176 | bc053c5868a14bd166160ffd2b143dd47622aba5 | Joey Hess | 2008-02-02 22:18:59 |
* Moved to a git repository. | 6c5feb7e384bcf7bae50ccfbefff2db9f03de35c | Joey Hess | 2008-02-02 22:03:34 |
releasing version 0.27 | 7d606d7c155c331eff7601476cbf7ba48e6dc49b | joeyh | 2008-02-02 21:44:09 |
* vidir: Check exit codes of close. Closes: #463739 | 8437ce241dda9004cd87b0d46ce6e7ff197fc927 | joeyh | 2008-02-02 21:42:22 |
releasing version 0.26 | 36f9ddc3d3d521a1568685d2882ea892fda51593 | joeyh | 2007-11-28 19:24:05 |
* isutf8: Correct inverted exit code when passed a file to check. Closes: #453306 | a7b6e16281c45aa91395a8dcdaa623d6bce69bab | joeyh | 2007-11-28 19:19:39 |
* isutf8: Detect and reject overlong UTF-8 sequences. Closes: #440951 Many thanks to liw for the patch. | 97bbfc9b4a3f995776e5229bbfd8214282308b77 | joeyh | 2007-11-12 17:04:11 |
File | Lines added | Lines deleted |
---|---|---|
sponge.c | 0 | 1 |
File sponge.c changed (mode: 100644) (index b452312..fc592e6) | |||
... | ... | static void onexit_cleanup (void) { | |
86 | 86 | } | } |
87 | 87 | ||
88 | 88 | static void sighandler (int sig) { | static void sighandler (int sig) { |
89 | printf("caught sig %d\n", sig); | ||
90 | 89 | if (! SA_NOCLDSTOP) | if (! SA_NOCLDSTOP) |
91 | 90 | signal(sig, SIG_IGN); | signal(sig, SIG_IGN); |
92 | 91 |