/[weechat]/weechat/src/common/weechat.c
ViewVC logotype

Diff of /weechat/src/common/weechat.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.40 by flashcode, Sat Mar 12 03:16:30 2005 UTC revision 1.41 by flashcode, Thu Mar 24 16:42:24 2005 UTC
# Line 116  weechat_convert_encoding (char *from_cod Line 116  weechat_convert_encoding (char *from_cod
116      #ifdef HAVE_ICONV      #ifdef HAVE_ICONV
117      iconv_t cd;      iconv_t cd;
118      char *inbuf, *ptr_inbuf, *ptr_outbuf;      char *inbuf, *ptr_inbuf, *ptr_outbuf;
119      int inbytesleft, outbytesleft;      size_t inbytesleft, outbytesleft;
120            
121      if (from_code && from_code[0] && to_code && to_code[0]      if (from_code && from_code[0] && to_code && to_code[0]
122          && (strcasecmp(from_code, to_code) != 0))          && (strcasecmp(from_code, to_code) != 0))
# Line 573  weechat_welcome_message () Line 573  weechat_welcome_message ()
573          cfg_look_startup_version)          cfg_look_startup_version)
574          gui_printf_color (NULL, COLOR_WIN_CHAT_PREFIX1,          gui_printf_color (NULL, COLOR_WIN_CHAT_PREFIX1,
575              "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n");              "-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-=-\n");
576        
577        wee_log_printf ("%s (%s %s %s)\n",
578                        PACKAGE_STRING, _("compiled on"), __DATE__, __TIME__);
579  }  }
580    
581  /*  /*
# Line 761  main (int argc, char *argv[]) Line 764  main (int argc, char *argv[])
764      }      }
765            
766      gui_init ();                    /* init WeeChat interface               */      gui_init ();                    /* init WeeChat interface               */
     plugin_init ();                 /* init plugin interface(s)             */      
767      weechat_welcome_message ();     /* display WeeChat welcome message      */      weechat_welcome_message ();     /* display WeeChat welcome message      */
768        plugin_init ();                 /* init plugin interface(s)             */    
769                                      /* auto-connect to servers              */                                      /* auto-connect to servers              */
770      server_auto_connect (server_cmd_line);      server_auto_connect (server_cmd_line);
771      fifo_create ();                 /* create FIFO pipe for remote control  */      fifo_create ();                 /* create FIFO pipe for remote control  */

Legend:
Removed from v.1.40  
changed lines
  Added in v.1.41

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26