make setargv take an array

for consistentcy with getargv, which returns one
master
Joey Hess 2008-03-19 15:49:00 -04:00
parent d7f1292c31
commit 6eb3cf7e76
2 changed files with 3 additions and 2 deletions

View File

@ -162,8 +162,9 @@ sub getargv ($) { #{{{
sub setargv ($@) { #{{{
my $plugin=shift;
my $array=shift;
@ARGV=@_;
@ARGV=@$array;
} #}}}
sub inject ($@) { #{{{

View File

@ -54,7 +54,7 @@ stored state, call `getstate("page", "id", "key")`, and to store state,
call `setstate("page", "id", "key", "value")`.
To access ikiwiki's ARGV array, call `getargv()`. To change its ARGV, call
`setargv(value)`.
`setargv(array)`.
## Notes on function parameters