nano

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

commit 815cba87e53e4c9599206b763702eb8f7e13df51
parent cb34a67ea1f4066bedae61c6497e449589e3e7f3
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Sat,  7 Feb 2004 03:07:01 +0000

forgot a cast


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

Diffstat:
Msrc/nano.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/nano.c b/src/nano.c @@ -1012,7 +1012,7 @@ int do_verbatim_input(void) * on, it will be updated properly. */ SET(DISABLE_CURPOS); for (i = 0; i < verbatim_len; i++) - do_char(verbatim_kbinput[i]); + do_char((char)verbatim_kbinput[i]); UNSET(DISABLE_CURPOS); free(verbatim_kbinput);