Settings of perl scripts are now stored in "perl/core/scripts" instead of

old "perl/core". The settings are automatically moved to the
perl/core/scripts for now - this will be removed before 0.7.99 comes out.


git-svn-id: http://svn.irssi.org/repos/irssi/trunk@2101 dbcabf3a-b0e7-0310-adc4-f8d773084564
This commit is contained in:
Timo Sirainen 2001-11-19 21:26:30 +00:00 committed by cras
commit 08162d83bf
2 changed files with 22 additions and 6 deletions

View file

@ -91,7 +91,7 @@ settings_add_str(section, key, def)
char *def
CODE:
perl_settings_add(key);
settings_add_str(section, key, def);
settings_add_str_module(MODULE_NAME"/scripts", section, key, def);
void
settings_add_int(section, key, def)
@ -100,7 +100,7 @@ settings_add_int(section, key, def)
int def
CODE:
perl_settings_add(key);
settings_add_int(section, key, def);
settings_add_int_module(MODULE_NAME"/scripts", section, key, def);
void
settings_add_bool(section, key, def)
@ -109,7 +109,7 @@ settings_add_bool(section, key, def)
int def
CODE:
perl_settings_add(key);
settings_add_bool(section, key, def);
settings_add_bool_module(MODULE_NAME"/scripts", section, key, def);
void
settings_remove(key)