From 15b12af71a802858ca8442cfeb1cebb6f496b04c Mon Sep 17 00:00:00 2001 From: Viktor Kojouharov Date: Tue, 29 May 2007 06:38:53 +0000 Subject: [PATCH] changed the flags back. don't use 1 << 0 for any of the flags, since the 'default' one is 0 --- chrome/content/vimperator/mappings.js | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/chrome/content/vimperator/mappings.js b/chrome/content/vimperator/mappings.js index 5192fb61..9ec5df99 100644 --- a/chrome/content/vimperator/mappings.js +++ b/chrome/content/vimperator/mappings.js @@ -76,9 +76,9 @@ function Mappings() this.user = []; this.flags = { - MOTION: 1 << 0, - COUNT: 1 << 1, - ARGUMENT: 1 << 2 + MOTION: 1 << 1, + COUNT: 1 << 2, + ARGUMENT: 1 << 3 }; this.add = function(map)