From cf48a5c534dc3c9b62246b298be6c15e3d6e7737 Mon Sep 17 00:00:00 2001 From: Damyan Ivanov Date: Tue, 17 Apr 2012 20:58:48 +0300 Subject: [PATCH] strip "Bug#" from keyword start --- chrome/content/icedeb.js | 1 + 1 file changed, 1 insertion(+) diff --git a/chrome/content/icedeb.js b/chrome/content/icedeb.js index e6c7adb..19cf120 100644 --- a/chrome/content/icedeb.js +++ b/chrome/content/icedeb.js @@ -39,6 +39,7 @@ IceDeb = { word = word.replace(/^[^a-zA-Z0-9]+/, ''); word = word.replace(/[^a-zA-Z0-9]+$/, ''); + word = word.replace(/^Bug#/i, ''); } while ( oldword != word ); return word; -- 2.39.2