]> git.deb.at Git - pkg/abook.git/commitdiff
- highlight_line should be static
authorJaakko Heinonen <jheinonen@users.sourceforge.net>
Tue, 5 Sep 2006 08:17:17 +0000 (08:17 +0000)
committerJaakko Heinonen <jheinonen@users.sourceforge.net>
Tue, 5 Sep 2006 08:17:17 +0000 (08:17 +0000)
list.c
list.h

diff --git a/list.c b/list.c
index 3051691c1cfeb7b3b764f143e139cd6512babe9e..9b39b7e9f03b1bc4d8ff9033c9e8e5ebbac32852 100644 (file)
--- a/list.c
+++ b/list.c
@@ -422,7 +422,7 @@ goto_end()
        refresh_list();
 }
 
-void
+static void
 highlight_line(WINDOW *win, int line)
 {
        wstandout(win);
diff --git a/list.h b/list.h
index 8f6e4a0782210c7c3f0e045db574c3c887cf34f8..45b00f832dc1be61435508c75a5425e350a175b1 100644 (file)
--- a/list.h
+++ b/list.h
@@ -43,7 +43,6 @@ void          list_invert_curitem_selection();
 void            move_curitem(int direction);
 void           goto_home();
 void           goto_end();
-void           highlight_line(WINDOW *win, int line);
 int            selected_items();
 void           invert_selection();
 int            list_is_empty();