From 35c4d6a614159ed1d2d1e294c4faeb3072791076 Mon Sep 17 00:00:00 2001 From: Doug Kearns Date: Mon, 17 Jan 2011 11:23:32 +1100 Subject: [PATCH] Fix :pageinfo. Broken in revision 185600dddcf7. --- common/content/buffer.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/common/content/buffer.js b/common/content/buffer.js index 60c46159..76c7a5b6 100644 --- a/common/content/buffer.js +++ b/common/content/buffer.js @@ -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; },
); dactyl.echo(list, commandline.FORCE_MULTILINE);