nano

nano with my custom patches
git clone git://bsandro.tech/nano
Log | Files | Refs | README | LICENSE

commit fc54d6e431f39456f870bde85b9e60e896112f17
parent c0e42bd3c50873f69f4f9f990f26d930e3ae1adf
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Thu,  2 Dec 2004 17:37:09 +0000

per Jeremy Huddleston's patch, fix compilation problem caused by
break_line()'s returning int when it should return ssize_t according to
its prototype


git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2155 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

Diffstat:
MChangeLog | 4++++
Msrc/nano.c | 2+-
2 files changed, 5 insertions(+), 1 deletion(-)

diff --git a/ChangeLog b/ChangeLog @@ -55,6 +55,10 @@ CVS code - display "UnJustify" in the shortcut list anymore. (DLR) do_wrap() - Make wrap_loc and word_back ssize_t's, to match fill. (DLR) + break_line() + - Fix compilation problem caused by its returning int when it + should return ssize_t according to its prototype. (Jeremy + Huddleston) do_justify() - For consistency, preserve placewewant if we didn't unjustify instead of setting it to 0. (DLR) diff --git a/src/nano.c b/src/nano.c @@ -2572,7 +2572,7 @@ bool breakable(const char *line, ssize_t goal) * such space, and force is TRUE, then we find the first space. Anyway, * we then take the last space in that group of spaces. The terminating * '\0' counts as a space. */ -int break_line(const char *line, ssize_t goal, bool force) +ssize_t break_line(const char *line, ssize_t goal, bool force) { ssize_t space_loc = -1; /* Current tentative return value. Index of the last space we