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

Fix completion issue in mozilla-central trunk. Closes issue #172.

This commit is contained in:
Kris Maglione
2010-12-15 21:34:33 -05:00
parent f07f067309
commit 69b87a6edd
2 changed files with 5 additions and 4 deletions

View File

@@ -971,7 +971,7 @@ const Util = Module("Util", XPCOM([Ci.nsIObserver, Ci.nsISupportsWeakReference])
* @param {RegExp} re The regexp showable source of which is to be returned.
* @returns {string}
*/
getSource: function regexp_getSource(re) re.source.replace(/\\(.)/g, function (m0, m1) m1 === "/" ? "/" : m0),
getSource: function regexp_getSource(re) re.source.replace(/\\(.)/g, function (m0, m1) m1 === "/" ? "/" : m0)
}),
maxErrors: 15,