1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2025-12-20 18:27:59 +01:00

Fix :pageinfo.

Broken in revision 185600dddcf7.
This commit is contained in:
Doug Kearns
2011-01-17 11:23:32 +11:00
parent f442a35f8d
commit 35c4d6a614

View File

@@ -976,7 +976,7 @@ var Buffer = Module("buffer", {
let option = sections || options["pageinfo"];
let list = template.map(option, function (option) {
let opt = this.pageInfo[option];
let opt = buffer.pageInfo[option];
return opt ? template.table(opt[1], opt[0](true)) : undefined;
}, <br/>);
dactyl.echo(list, commandline.FORCE_MULTILINE);