1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-22 13:48:00 +01:00

Fix :run on FF 3.6.

Closes issue #233.
This commit is contained in:
Doug Kearns
2011-01-04 01:45:53 +11:00
parent 835fabb62d
commit 28d1524229

View File

@@ -466,7 +466,7 @@ var IO = Module("io", {
* otherwise, the return value of *func*.
*/
withTempFiles: function (func, self, checked) {
let args = array(util.range(0, func.length)).map(this.createTempFile);
let args = array(util.range(0, func.length)).map(this.createTempFile).array;
try {
if (!args.every(util.identity))
return false;