diff --git a/common/content/hints.js b/common/content/hints.js index 50c4533a..d349ce58 100644 --- a/common/content/hints.js +++ b/common/content/hints.js @@ -425,7 +425,7 @@ function Hints() //{{{ let beyondLastWord = (nextWordIdx == words.length); let charMatched = false; if (beyondLastWord == false) - charMatched = charMatches(nextCharIdx, chars, nextWordIdx, words, 0, allowWordOverleaping) + charMatched = charMatches(nextCharIdx, chars, nextWordIdx, words, 0, allowWordOverleaping) if (charMatched) return true; diff --git a/muttator/content/mail.js b/muttator/content/mail.js index 61242230..1e523167 100644 --- a/muttator/content/mail.js +++ b/muttator/content/mail.js @@ -995,12 +995,13 @@ function Mail() //{{{ // TODO: find out why, and solve the problem try { - var msgs = folder.getMessages(msgWindow); + var msgs = folder.messages; } catch (e) { - liberator.dump("ERROR: " + folder.prettyName + " failed to getMessages\n"); - continue; + var msgs = folder.getMessages(msgWindow); // for older thunderbirds + liberator.dump("WARNING: " + folder.prettyName + " failed to getMessages, trying old API"); + //continue; } while (msgs.hasMoreElements()) diff --git a/muttator/install.rdf b/muttator/install.rdf index e02650d2..3785bda0 100644 --- a/muttator/install.rdf +++ b/muttator/install.rdf @@ -1,28 +1,28 @@ - - - - - - muttator@mozdev.org - Muttator - ###VERSION### - Make Thunderbird behave like Vim - Martin Stubenschrott - http://vimperator.org/ - chrome://muttator/skin/icon.png - - - content/muttator/ - - - - - - {3550f703-e582-4d05-9a08-453d09bdfdc6} - 3.0a1pre - 3.0b2pre - - - - - + + + + + + muttator@mozdev.org + Muttator + ###VERSION### + Make Thunderbird behave like Vim + Martin Stubenschrott + http://vimperator.org/ + chrome://muttator/skin/icon.png + + + content/muttator/ + + + + + + {3550f703-e582-4d05-9a08-453d09bdfdc6} + 3.0b2pre + 3.0b2 + + + + +