mirror of
https://github.com/irssi/irssi.git
synced 2026-08-16 23:22:16 +02:00
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:
parent
dc11f23afd
commit
08162d83bf
2 changed files with 22 additions and 6 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue