Index: global.c =================================================================== --- global.c (revision 4518) +++ global.c (working copy) @@ -1335,18 +1335,6 @@ } -/* Free the given shortcut. */ -void free_shortcutage(shortcut **shortcutage) -{ - assert(shortcutage != NULL); - - while (*shortcutage != NULL) { - shortcut *ps = *shortcutage; - *shortcutage = (*shortcutage)->next; - free(ps); - } -} - const subnfunc *sctofunc(sc *s) { subnfunc *f; Index: proto.h =================================================================== --- proto.h (revision 4518) +++ proto.h (working copy) @@ -340,7 +340,6 @@ , int metaval, int funcval, int miscval, bool view, void (*func)(void)); void shortcut_init(bool unjustify); -void free_shortcutage(shortcut **shortcutage); #ifdef DEBUG void thanks_for_all_the_fish(void); #endif