summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/curses/gui-curses-bar-window.c6
-rw-r--r--src/gui/curses/gui-curses-chat.c6
-rw-r--r--src/gui/curses/gui-curses-color.c6
-rw-r--r--src/gui/curses/gui-curses-key.c6
-rw-r--r--src/gui/curses/gui-curses-main.c6
-rw-r--r--src/gui/curses/gui-curses-mouse.c6
-rw-r--r--src/gui/curses/gui-curses-term.c6
-rw-r--r--src/gui/curses/gui-curses-window.c6
-rw-r--r--src/gui/gtk/gui-gtk-bar-window.c6
-rw-r--r--src/gui/gtk/gui-gtk-chat.c6
-rw-r--r--src/gui/gtk/gui-gtk-color.c6
-rw-r--r--src/gui/gtk/gui-gtk-key.c6
-rw-r--r--src/gui/gtk/gui-gtk-main.c6
-rw-r--r--src/gui/gtk/gui-gtk-mouse.c6
-rw-r--r--src/gui/gtk/gui-gtk-term.c6
-rw-r--r--src/gui/gtk/gui-gtk-window.c6
-rw-r--r--src/gui/gui-bar-item.c6
-rw-r--r--src/gui/gui-bar-window.c6
-rw-r--r--src/gui/gui-bar.c6
-rw-r--r--src/gui/gui-buffer.c6
-rw-r--r--src/gui/gui-chat.c6
-rw-r--r--src/gui/gui-color.c6
-rw-r--r--src/gui/gui-completion.c6
-rw-r--r--src/gui/gui-cursor.c6
-rw-r--r--src/gui/gui-filter.c6
-rw-r--r--src/gui/gui-focus.c6
-rw-r--r--src/gui/gui-history.c6
-rw-r--r--src/gui/gui-hotlist.c7
-rw-r--r--src/gui/gui-input.c6
-rw-r--r--src/gui/gui-key.c6
-rw-r--r--src/gui/gui-layout.c6
-rw-r--r--src/gui/gui-line.c6
-rw-r--r--src/gui/gui-mouse.c6
-rw-r--r--src/gui/gui-nicklist.c6
-rw-r--r--src/gui/gui-window.c6
35 files changed, 70 insertions, 141 deletions
diff --git a/src/gui/curses/gui-curses-bar-window.c b/src/gui/curses/gui-curses-bar-window.c
index 83a1375f4..452a78ca3 100644
--- a/src/gui/curses/gui-curses-bar-window.c
+++ b/src/gui/curses/gui-curses-bar-window.c
@@ -1,4 +1,6 @@
/*
+ * gui-curses-bar-window.c - bar window functions for Curses GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-curses-bar-window.c: bar window functions for Curses GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/curses/gui-curses-chat.c b/src/gui/curses/gui-curses-chat.c
index 56fae3136..b404682fe 100644
--- a/src/gui/curses/gui-curses-chat.c
+++ b/src/gui/curses/gui-curses-chat.c
@@ -1,4 +1,6 @@
/*
+ * gui-curses-chat.c - chat display functions for Curses GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-curses-chat.c: chat display functions for Curses GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/curses/gui-curses-color.c b/src/gui/curses/gui-curses-color.c
index 44c164bf9..57cb67ba9 100644
--- a/src/gui/curses/gui-curses-color.c
+++ b/src/gui/curses/gui-curses-color.c
@@ -1,4 +1,6 @@
/*
+ * gui-curses-color.c - color functions for Curses GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-curses-color.c: color functions for Curses GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/curses/gui-curses-key.c b/src/gui/curses/gui-curses-key.c
index 1d43e5219..fd8b100f8 100644
--- a/src/gui/curses/gui-curses-key.c
+++ b/src/gui/curses/gui-curses-key.c
@@ -1,4 +1,6 @@
/*
+ * gui-curses-key.c - keyboard functions for Curses GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-curses-key.c: keyboard functions for Curses GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/curses/gui-curses-main.c b/src/gui/curses/gui-curses-main.c
index dcb92846c..90683ee2f 100644
--- a/src/gui/curses/gui-curses-main.c
+++ b/src/gui/curses/gui-curses-main.c
@@ -1,4 +1,6 @@
/*
+ * gui-curses-main.c - main loop for Curses GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-curses-main.c: main loop for Curses GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/curses/gui-curses-mouse.c b/src/gui/curses/gui-curses-mouse.c
index 8a9b658ee..34c5c2fd5 100644
--- a/src/gui/curses/gui-curses-mouse.c
+++ b/src/gui/curses/gui-curses-mouse.c
@@ -1,4 +1,6 @@
/*
+ * gui-curses-mouse.c - mouse functions for Curses GUI
+ *
* Copyright (C) 2011-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-curses-mouse.c: mouse functions for Curses GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/curses/gui-curses-term.c b/src/gui/curses/gui-curses-term.c
index 65d0695c5..7cdc1c8d8 100644
--- a/src/gui/curses/gui-curses-term.c
+++ b/src/gui/curses/gui-curses-term.c
@@ -1,4 +1,6 @@
/*
+ * gui-curses-term.c - terminal functions for Curses GUI
+ *
* Copyright (C) 2011-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-curses-term.c: terminal functions for Curses GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/curses/gui-curses-window.c b/src/gui/curses/gui-curses-window.c
index be3a62ec5..0adfc1f13 100644
--- a/src/gui/curses/gui-curses-window.c
+++ b/src/gui/curses/gui-curses-window.c
@@ -1,4 +1,6 @@
/*
+ * gui-curses-window.c - window display functions for Curses GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-curses-window.c: window display functions for Curses GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gtk/gui-gtk-bar-window.c b/src/gui/gtk/gui-gtk-bar-window.c
index cabc562e0..029dc9178 100644
--- a/src/gui/gtk/gui-gtk-bar-window.c
+++ b/src/gui/gtk/gui-gtk-bar-window.c
@@ -1,4 +1,6 @@
/*
+ * gui-gtk-bar-window.c - bar window functions for Gtk GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-gtk-bar-window.c: bar window functions for Gtk GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gtk/gui-gtk-chat.c b/src/gui/gtk/gui-gtk-chat.c
index 19dd9afd0..0b85eaa32 100644
--- a/src/gui/gtk/gui-gtk-chat.c
+++ b/src/gui/gtk/gui-gtk-chat.c
@@ -1,4 +1,6 @@
/*
+ * gui-gtk-chat.c - chat display functions for Gtk GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-gtk-chat.c: chat display functions for Gtk GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gtk/gui-gtk-color.c b/src/gui/gtk/gui-gtk-color.c
index ff72c51b6..8efa3fd13 100644
--- a/src/gui/gtk/gui-gtk-color.c
+++ b/src/gui/gtk/gui-gtk-color.c
@@ -1,4 +1,6 @@
/*
+ * gui-gtk-color.c - color functions for Gtk GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-gtk-color.c: color functions for Gtk GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gtk/gui-gtk-key.c b/src/gui/gtk/gui-gtk-key.c
index 4cd1ab866..55206f1ff 100644
--- a/src/gui/gtk/gui-gtk-key.c
+++ b/src/gui/gtk/gui-gtk-key.c
@@ -1,4 +1,6 @@
/*
+ * gui-gtk-keyboard.c - keyboard functions for Gtk GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-gtk-keyboard.c: keyboard functions for Gtk GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gtk/gui-gtk-main.c b/src/gui/gtk/gui-gtk-main.c
index b8b2577c7..72278156b 100644
--- a/src/gui/gtk/gui-gtk-main.c
+++ b/src/gui/gtk/gui-gtk-main.c
@@ -1,4 +1,6 @@
/*
+ * gui-gtk-main.c - main loop for Gtk GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-gtk-main.c: main loop for Gtk GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gtk/gui-gtk-mouse.c b/src/gui/gtk/gui-gtk-mouse.c
index a6feb26e7..a39157e1a 100644
--- a/src/gui/gtk/gui-gtk-mouse.c
+++ b/src/gui/gtk/gui-gtk-mouse.c
@@ -1,4 +1,6 @@
/*
+ * gui-gtk-mouse.c - mouse functions for Gtk GUI
+ *
* Copyright (C) 2011-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-gtk-mouse.c: mouse functions for Gtk GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gtk/gui-gtk-term.c b/src/gui/gtk/gui-gtk-term.c
index 618ca3faa..bc942b8ca 100644
--- a/src/gui/gtk/gui-gtk-term.c
+++ b/src/gui/gtk/gui-gtk-term.c
@@ -1,4 +1,6 @@
/*
+ * gui-gtk-term.c - terminal functions for Gtk GUI
+ *
* Copyright (C) 2011-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-gtk-term.c: terminal functions for Gtk GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gtk/gui-gtk-window.c b/src/gui/gtk/gui-gtk-window.c
index ba912a866..9efd0665c 100644
--- a/src/gui/gtk/gui-gtk-window.c
+++ b/src/gui/gtk/gui-gtk-window.c
@@ -1,4 +1,6 @@
/*
+ * gui-gtk-window.c - window display functions for Gtk GUI
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-gtk-window.c: window display functions for Gtk GUI
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-bar-item.c b/src/gui/gui-bar-item.c
index e8ae2b1b6..7113f923a 100644
--- a/src/gui/gui-bar-item.c
+++ b/src/gui/gui-bar-item.c
@@ -1,4 +1,6 @@
/*
+ * gui-bar-item.c - bar item functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-bar-item.c: bar item functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-bar-window.c b/src/gui/gui-bar-window.c
index 08e9125a1..eecb34b34 100644
--- a/src/gui/gui-bar-window.c
+++ b/src/gui/gui-bar-window.c
@@ -1,4 +1,6 @@
/*
+ * gui-bar-window.c - bar window functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-bar-window.c: bar window functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-bar.c b/src/gui/gui-bar.c
index a884b6653..854622f84 100644
--- a/src/gui/gui-bar.c
+++ b/src/gui/gui-bar.c
@@ -1,4 +1,6 @@
/*
+ * gui-bar.c - bar functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-bar.c: bar functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-buffer.c b/src/gui/gui-buffer.c
index fba3f3bfc..f5c4ea809 100644
--- a/src/gui/gui-buffer.c
+++ b/src/gui/gui-buffer.c
@@ -1,4 +1,6 @@
/*
+ * gui-buffer.c - buffer functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-buffer.c: buffer functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-chat.c b/src/gui/gui-chat.c
index d0dd74a5d..3799a888c 100644
--- a/src/gui/gui-chat.c
+++ b/src/gui/gui-chat.c
@@ -1,4 +1,6 @@
/*
+ * gui-chat.c - chat functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-chat.c: chat functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-color.c b/src/gui/gui-color.c
index 8aee841af..a33f4d44a 100644
--- a/src/gui/gui-color.c
+++ b/src/gui/gui-color.c
@@ -1,4 +1,6 @@
/*
+ * gui-color.c - color functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-color.c: color functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-completion.c b/src/gui/gui-completion.c
index 69e1c886a..00decef3a 100644
--- a/src/gui/gui-completion.c
+++ b/src/gui/gui-completion.c
@@ -1,4 +1,6 @@
/*
+ * gui-completion.c - word completion according to context (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-completion.c: word completion according to context (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-cursor.c b/src/gui/gui-cursor.c
index 5e484a722..968a68234 100644
--- a/src/gui/gui-cursor.c
+++ b/src/gui/gui-cursor.c
@@ -1,4 +1,6 @@
/*
+ * gui-cursor.c - functions for free movement of cursor (used by all GUI)
+ *
* Copyright (C) 2011-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-cursor.c: functions for free movement of cursor (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-filter.c b/src/gui/gui-filter.c
index 60cd8d2da..80b2e20f3 100644
--- a/src/gui/gui-filter.c
+++ b/src/gui/gui-filter.c
@@ -1,4 +1,6 @@
/*
+ * gui-filter.c - filter functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-filter.c: filter functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-focus.c b/src/gui/gui-focus.c
index 7ea9e7847..dc2fcd90d 100644
--- a/src/gui/gui-focus.c
+++ b/src/gui/gui-focus.c
@@ -1,4 +1,6 @@
/*
+ * gui-focus.c - functions about focus (cursor mode and mouse) (used by all GUI)
+ *
* Copyright (C) 2011-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-focus.c: functions about focus (for cursor mode and mouse) (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-history.c b/src/gui/gui-history.c
index 98d93f081..8939d0e2d 100644
--- a/src/gui/gui-history.c
+++ b/src/gui/gui-history.c
@@ -1,4 +1,6 @@
/*
+ * gui-history.c - memorize commands or text for buffers (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
* Copyright (C) 2005 Emmanuel Bouthenot <kolter@openics.org>
*
@@ -18,10 +20,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-history.c: memorize commands or text for buffers (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-hotlist.c b/src/gui/gui-hotlist.c
index 702e97e28..c0627e949 100644
--- a/src/gui/gui-hotlist.c
+++ b/src/gui/gui-hotlist.c
@@ -1,4 +1,6 @@
/*
+ * gui-hotlist.c - hotlist management (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,11 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-hotlist.c: hotlist management (list of buffers with activity)
- * (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-input.c b/src/gui/gui-input.c
index 35f825a3c..0193dc3d4 100644
--- a/src/gui/gui-input.c
+++ b/src/gui/gui-input.c
@@ -1,4 +1,6 @@
/*
+ * gui-input.c - input functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-input.c: input functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-key.c b/src/gui/gui-key.c
index 0b734cb2b..96e10ebc4 100644
--- a/src/gui/gui-key.c
+++ b/src/gui/gui-key.c
@@ -1,4 +1,6 @@
/*
+ * gui-key.c - keyboard functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-key.c: keyboard functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-layout.c b/src/gui/gui-layout.c
index 1267021c4..d9e1a839e 100644
--- a/src/gui/gui-layout.c
+++ b/src/gui/gui-layout.c
@@ -1,4 +1,6 @@
/*
+ * gui-layout.c - layout functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-layout.c: layout functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-line.c b/src/gui/gui-line.c
index c0e6c46e1..08ebf1855 100644
--- a/src/gui/gui-line.c
+++ b/src/gui/gui-line.c
@@ -1,4 +1,6 @@
/*
+ * gui-line.c - line functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-line.c: line functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-mouse.c b/src/gui/gui-mouse.c
index a2fa2f71e..b1f0a3d24 100644
--- a/src/gui/gui-mouse.c
+++ b/src/gui/gui-mouse.c
@@ -1,4 +1,6 @@
/*
+ * gui-mouse.c - functions for mouse (used by all GUI)
+ *
* Copyright (C) 2011-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-mouse.c: functions for mouse (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-nicklist.c b/src/gui/gui-nicklist.c
index b2181397a..246070ead 100644
--- a/src/gui/gui-nicklist.c
+++ b/src/gui/gui-nicklist.c
@@ -1,4 +1,6 @@
/*
+ * gui-nicklist.c - nicklist functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-nicklist.c: nicklist functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif
diff --git a/src/gui/gui-window.c b/src/gui/gui-window.c
index 14e59e16a..348972ebf 100644
--- a/src/gui/gui-window.c
+++ b/src/gui/gui-window.c
@@ -1,4 +1,6 @@
/*
+ * gui-window.c - window functions (used by all GUI)
+ *
* Copyright (C) 2003-2012 Sebastien Helleu <flashcode@flashtux.org>
*
* This file is part of WeeChat, the extensible chat client.
@@ -17,10 +19,6 @@
* along with WeeChat. If not, see <http://www.gnu.org/licenses/>.
*/
-/*
- * gui-window.c: window functions (used by all GUI)
- */
-
#ifdef HAVE_CONFIG_H
#include "config.h"
#endif