summary refs log tree commit diff stats
path: root/plugins/perl
diff options
context:
space:
mode:
authorBerke Viktor <bviktor@hexchat.org>2012-07-20 15:52:33 +0200
committerBerke Viktor <bviktor@hexchat.org>2012-07-20 15:52:33 +0200
commit5290c7f392651acbf558709f487eb0bf651dd410 (patch)
treedbd0042d8da8b69f4eb1ba27d98a6223145ae795 /plugins/perl
parent47d6222f1c66332a652fc4d49fc39b4b04905beb (diff)
Some more rebranding
Diffstat (limited to 'plugins/perl')
-rw-r--r--plugins/perl/perl.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/perl/perl.c b/plugins/perl/perl.c
index 1250e766..2898fed5 100644
--- a/plugins/perl/perl.c
+++ b/plugins/perl/perl.c
@@ -144,7 +144,7 @@ perl_auto_load (void *unused)
 	if (!xdir)			/* xchatdirfs is new for 2.0.9, will fail on older */
 		xdir = xchat_get_info (ph, "xchatdir");
 
-	/* autoload from ~/.xchat2/ or ${APPDATA}\HexChat\ on win32 */
+	/* autoload from ~/.config/hexchat/ or %APPDATA%\HexChat\ on win32 */
 	perl_auto_load_from_path (xdir);
 
 	sub_dir = malloc (strlen (xdir) + 9);
@@ -154,7 +154,7 @@ perl_auto_load (void *unused)
 	free (sub_dir);
 
 #ifdef WIN32
-	/* autoload from  C:\program files\xchat\plugins\ */
+	/* autoload from  C:\Program Files\HexChat\plugins\ */
 	sub_dir = malloc (1025 + 9);
 	copied = GetModuleFileName( 0, sub_dir, 1024 );
 	sub_dir[copied] = '\0';