diff options
author | Joey Hess <joey@kodama.kitenet.net> | 2008-03-19 15:49:00 -0400 |
---|---|---|
committer | Joey Hess <joey@kodama.kitenet.net> | 2008-03-19 15:49:00 -0400 |
commit | 6eb3cf7e76c53b05154bb2104e395922bd0eed4e (patch) | |
tree | 64a45745b52b47fcd3245ca24432be0ac2281de9 | |
parent | d7f1292c3134fd9464ca4005f48b9274be861c10 (diff) |
make setargv take an array
for consistentcy with getargv, which returns one
-rw-r--r-- | IkiWiki/Plugin/external.pm | 3 | ||||
-rw-r--r-- | doc/plugins/write/external.mdwn | 2 |
2 files changed, 3 insertions, 2 deletions
diff --git a/IkiWiki/Plugin/external.pm b/IkiWiki/Plugin/external.pm index a30ef3f61..43d2cbb28 100644 --- a/IkiWiki/Plugin/external.pm +++ b/IkiWiki/Plugin/external.pm @@ -162,8 +162,9 @@ sub getargv ($) { #{{{ sub setargv ($@) { #{{{ my $plugin=shift; + my $array=shift; - @ARGV=@_; + @ARGV=@$array; } #}}} sub inject ($@) { #{{{ diff --git a/doc/plugins/write/external.mdwn b/doc/plugins/write/external.mdwn index 058b9e58a..4492cd0da 100644 --- a/doc/plugins/write/external.mdwn +++ b/doc/plugins/write/external.mdwn @@ -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 |