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

fix infinite loop when calling "gu" with a {count}

This commit is contained in:
Doug Kearns
2007-07-25 15:55:31 +00:00
parent 8a84463ffc
commit 0df30f66db
2 changed files with 2 additions and 1 deletions

1
TODO
View File

@@ -14,6 +14,7 @@ BUGS:
webpage, saving only the html works just fine..
- add window resize support to hints
- can't reverse tab through the vimperator toolbar
- gu doesn't work when the current URL contains a trailing slash
FEATURES:
9 :map commands to keys

View File

@@ -732,7 +732,7 @@ function Mappings() //{{{
if (count < 1)
count = 1;
for (var i = 0; i < count - 1; i--)
for (var i = 0; i < count - 1; i++)
gocmd += "../";
openURLs(gocmd);