From 449ff06fdedad5dd24baa55dafff7d1364c880bd Mon Sep 17 00:00:00 2001 From: Kris Maglione Date: Sun, 9 Oct 2011 12:02:17 -0400 Subject: [PATCH] Fix typo. --- common/modules/buffer.jsm | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/common/modules/buffer.jsm b/common/modules/buffer.jsm index 1dd3861c..a856282c 100644 --- a/common/modules/buffer.jsm +++ b/common/modules/buffer.jsm @@ -786,7 +786,7 @@ var Buffer = Module("Buffer", { * @param {boolean} offScreen If true, include only off-screen elements. @optional */ findJump: function findJump(arg, count, reverse, offScreen) { - let { options } = this.modules; + let { marks, options } = this.modules; const FUDGE = 10; @@ -844,7 +844,6 @@ var Buffer = Module("Buffer", { let next = current + count; if (next < 0 || next >= frames.length) util.dactyl.beep(); - dactyl.beep(); next = Math.constrain(next, 0, frames.length - 1); // focus next frame and scroll into view