1
0
mirror of https://github.com/weechat/weechat.git synced 2026-07-03 08:13:14 +02:00

Add weechat_highlight signal, sent when a line with highlight is displayed

This commit is contained in:
Sebastien Helleu
2008-11-05 12:37:04 +01:00
parent bffe879db8
commit a6c4e4ed76
4 changed files with 67 additions and 3 deletions
+4 -3
View File
@@ -71,9 +71,9 @@
int weechat_debug_core = 0; /* debug level for core */
char *weechat_argv0 = NULL; /* WeeChat binary file name (argv[0])*/
int weechat_upgrading; /* =1 if WeeChat is upgrading */
time_t weechat_start_time; /* start time (used by /uptime cmd) */
int weechat_quit; /* = 1 if quit request from user */
int weechat_upgrading = 0; /* =1 if WeeChat is upgrading */
time_t weechat_start_time = 0; /* start time (used by /uptime cmd) */
int weechat_quit = 0; /* = 1 if quit request from user */
int weechat_sigsegv = 0; /* SIGSEGV received? */
char *weechat_home = NULL; /* home dir. (default: ~/.weechat) */
char *weechat_local_charset = NULL; /* example: ISO-8859-1, UTF-8 */
@@ -400,6 +400,7 @@ main (int argc, char *argv[])
argc, argv);
command_startup (1); /* command executed after plugins */
gui_layout_window_apply (); /* apply saved layout for windows */
weechat_upgrading = 0;
gui_main_loop (); /* WeeChat main loop */
+1
View File
@@ -100,6 +100,7 @@
extern int weechat_debug_core;
extern char *weechat_argv0;
extern int weechat_upgrading;
extern time_t weechat_start_time;
extern int weechat_quit;
extern char *weechat_home;