Update to XChat r1510

This commit is contained in:
Berke Viktor 2012-07-13 20:03:27 +02:00
parent 9a5c8c2f3c
commit 6fd3a18fcf
1 changed files with 10 additions and 0 deletions

View File

@ -385,11 +385,21 @@ Util_Autoload_from (const char *dir_name)
static void
Util_Autoload()
{
const char *xdir;
char *sub_dir;
/* we need local filesystem encoding for chdir, opendir etc */
/* auto-load from ~/.xchat2/ or %APPDATA%\X-Chat 2\ */
xdir = xchat_get_info(ph, "xchatdirfs");
Util_Autoload_from(xchat_get_info(ph, "xchatdirfs"));
/* auto-load from subdirectory plugins */
sub_dir = malloc (strlen (xdir) + 9);
strcpy (sub_dir, xdir);
strcat (sub_dir, "/plugins");
Util_Autoload_from(sub_dir);
free (sub_dir);
#ifdef WIN32 /* also auto-load C:\Program Files\XChat\Plugins\*.py */
Util_Autoload_from(HEXCHATLIBDIR"/plugins");
#endif