nano

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

commit 193b0e56f3ec49447b378361bae1e7993f147720
parent 9b108c21100f6a230341b9b576244612ca518542
Author: David Lawrence Ramsey <pooka109@gmail.com>
Date:   Mon,  6 Jun 2005 18:41:17 +0000

add missing blank line


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

Diffstat:
Msrc/global.c | 1+
1 file changed, 1 insertion(+), 0 deletions(-)

diff --git a/src/global.c b/src/global.c @@ -1060,6 +1060,7 @@ void shortcut_init(bool unjustify) void free_shortcutage(shortcut **shortcutage) { assert(shortcutage != NULL); + while (*shortcutage != NULL) { shortcut *ps = *shortcutage; *shortcutage = (*shortcutage)->next;