1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-01-04 02:44:23 +01:00

Fix message key typo.

This commit is contained in:
Doug Kearns
2011-03-28 10:34:45 +11:00
parent 207b6dca72
commit 78430defc2

View File

@@ -146,7 +146,7 @@ var Marks = Module("marks", {
let mark = (this._localMarks.get(this.localURI) || {})[char];
dactyl.assert(mark, _("mark.unset", char));
dactyl.log(_("marks.jumpingToLocal", Marks.markToString(char, mark)), 5);
dactyl.log(_("mark.jumpingToLocal", Marks.markToString(char, mark)), 5);
buffer.scrollToPercent(mark.position.x * 100, mark.position.y * 100);
}
else