1
0
mirror of https://github.com/gryf/pentadactyl-pm.git synced 2026-02-18 13:15:46 +01:00

Fix NEWS munging broken by charset corruption after moving to modules.

This commit is contained in:
Kris Maglione
2011-09-06 10:04:38 -04:00
parent a5aafe63d9
commit 34e9e55489
5 changed files with 14 additions and 12 deletions

View File

@@ -250,7 +250,7 @@ var Help = Module("Help", {
{ mimeType: "text/plain;charset=UTF-8" })
.responseText;
let re = util.regexp(<![CDATA[
let re = util.regexp(UTF8(<![CDATA[
^ (?P<comment> \s* # .*\n)
| ^ (?P<space> \s*)
@@ -266,7 +266,7 @@ var Help = Module("Help", {
)
| (?: ^ [^\S\n]* \n) +
]]>, "gmxy");
]]>), "gmxy");
let betas = util.regexp(/\[(b\d)\]/, "gx");