]> git.wh0rd.org Git - nano.git/commitdiff
Removing unused function 'free_shortcutage'.
authorBenno Schulenberg <bensberg@justemail.net>
Fri, 28 Feb 2014 19:53:55 +0000 (19:53 +0000)
committerBenno Schulenberg <bensberg@justemail.net>
Fri, 28 Feb 2014 19:53:55 +0000 (19:53 +0000)
git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@4627 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/global.c
src/proto.h

index 43530a1bd366969664afba4d82e51877a80dcb49..a4efa3c7df6d2fdc2ab802323f7a3f64121ea9c4 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -5,6 +5,7 @@
        * src/global.c (strtosc) - Correct a misspelled keyword.
        * src/rcfile.c (check_vitals_mapped) - Actually translate a
        helpful message, and reword it somewhat for clarity.
+       * src/global.c - Remove unused function 'free_shortcutage'.
 
 2014-02-28  Eitan Adler  <lists@eitanadler.com>
        * src/nano.c (do_toggle) - Constify a char pointer, to fix
index 461652bf331306b8f6e03ac457d551e4fd1c2f89..59320a387e862435b3f66ea6cc6c1022f0bc3ad1 100644 (file)
@@ -1336,18 +1336,6 @@ void set_spell_shortcuts(void)
 #endif
 
 
-/* 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 07c7ae6459fff7523ec60bfa1cd534a2bd7d13ca..6f26c0e8826da765a2073718011c3c3281f67462 100644 (file)
@@ -356,7 +356,6 @@ void sc_init_one(shortcut **shortcutage, int ctrlval, const char *desc
        , 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