From: David Lawrence Ramsey Date: Mon, 6 Jun 2005 18:41:17 +0000 (+0000) Subject: add missing blank line X-Git-Tag: v1.3.8~200 X-Git-Url: https://git.wh0rd.org/?a=commitdiff_plain;h=193b0e56f3ec49447b378361bae1e7993f147720;p=nano.git add missing blank line git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@2603 35c25a1d-7b9e-4130-9fde-d3aeb78583b8 --- diff --git a/src/global.c b/src/global.c index 00ff6ab8..ca7975a4 100644 --- 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;