[hackers] [farbfeld] Small changes in the png-utils || FRIGN

2016-01-06 Thread git
commit 98dbe21bcb83fead026c295329ad2a55d8eff1b5 Author: FRIGN AuthorDate: Wed Jan 6 12:29:36 2016 +0100 Commit: FRIGN CommitDate: Wed Jan 6 12:29:36 2016 +0100 Small changes in the png-utils forgot to include setjmp.h. also correct the malloc

[hackers] [farbfeld] Refactor jpg2ff || FRIGN

2016-01-06 Thread git
commit ff5bbfae5214d8291c8eb93670233909ded5b722 Author: FRIGN AuthorDate: Wed Jan 6 12:30:17 2016 +0100 Commit: FRIGN CommitDate: Wed Jan 6 12:32:48 2016 +0100 Refactor jpg2ff Remove some kitchen sink comments (the jpg boilerplate is already

[hackers] [farbfeld] Forgot to add argv[0] to fprintf || FRIGN

2016-01-06 Thread git
commit d17e95f980060bd61439f8658bd0719c26595a2b Author: FRIGN AuthorDate: Wed Jan 6 12:41:20 2016 +0100 Commit: FRIGN CommitDate: Wed Jan 6 12:41:20 2016 +0100 Forgot to add argv[0] to fprintf diff --git a/jpg2ff.c b/jpg2ff.c index acf66b3..9ed9258

[hackers] [farbfeld] Improve error-handling in the tools || FRIGN

2016-01-06 Thread git
commit 295094bbbfecd64b4e6841e5e8093cc1748a2917 Author: FRIGN AuthorDate: Wed Jan 6 15:15:06 2016 +0100 Commit: FRIGN CommitDate: Wed Jan 6 15:15:06 2016 +0100 Improve error-handling in the tools We don't need the jumps, but rather pass a nice

[hackers] [farbfeld] Add 'dist' to .PHONY || FRIGN

2016-01-06 Thread git
commit 7cf7ba92588f6013b95cdec0545545275d37a6af Author: FRIGN AuthorDate: Wed Jan 6 18:41:30 2016 +0100 Commit: FRIGN CommitDate: Wed Jan 6 18:41:47 2016 +0100 Add 'dist' to .PHONY Thanks Dimitris for reporting this! diff --git a/Makefile

[hackers] [farbfeld] Bump version to 1 || FRIGN

2016-01-06 Thread git
commit add6f5c09238ff797dede77eea1ce30ec85bdc13 Author: FRIGN AuthorDate: Wed Jan 6 18:36:58 2016 +0100 Commit: FRIGN CommitDate: Wed Jan 6 18:36:58 2016 +0100 Bump version to 1 And add a makerule to create a tarball via make dist. diff --git

[hackers] [farbfeld] Install manpages in $PREFIX/man not $PREFIX/share/man || FRIGN

2016-01-06 Thread git
commit 5bc3650669e4c12105b944058b0f9cdeb186e2e5 Author: FRIGN AuthorDate: Wed Jan 6 18:15:52 2016 +0100 Commit: FRIGN CommitDate: Wed Jan 6 18:15:52 2016 +0100 Install manpages in $PREFIX/man not $PREFIX/share/man Real men use /man and don't

[hackers] [sbase][PATCH] Handle explicitly the case of line 0

2016-01-06 Thread Roberto E. Vargas Caballero
Line 0 is a special line added to allow operations with empty buffers, and we have to ensure that it is not going to match any regular expression. The code was written in a way that this case was handle implicitily, but this solution was working only for the first file loaded in ed, while the

[hackers] [sbase][PATCH v2] Handle explicitly the case of line 0

2016-01-06 Thread Roberto E. Vargas Caballero
Line 0 is a special line added to allow operations with empty buffers, and we have to ensure that it is not going to match any regular expression. The code was written in a way that this case was handle implicitily, but this solution was working only for the first file loaded in ed, while the