Merge pull request #2996 from hpwamr/mui

+ Chg: Maintenance - delete 3 unused files
This commit is contained in:
Pairi Daiza 2020-12-07 18:03:04 +01:00 committed by GitHub
commit 8e6b1fe9c2
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 0 additions and 57 deletions

2
.gitattributes vendored
View File

@ -1,2 +0,0 @@
*.sh text eol=lf
*.bat text eol=crlf

View File

@ -1 +0,0 @@
theme: jekyll-theme-cayman

View File

@ -1,54 +0,0 @@
/*
Comment lexer modules from "scintilla\src\Catalogue.cxx" not used by Notepad2
(c) Florian Balmer 2011
*/
var lex = new Array(
"lmAHK",
"lmAsm",
"lmAU3",
"lmAVS",
"lmBash",
"lmBatch",
"lmCmake",
"lmCoffeeScript",
"lmConf",
"lmCPP",
"lmCss",
"lmDiff",
"lmHTML",
"lmInno",
"lmLatex",
"lmLua",
"lmMake",
"lmMarkdown",
"lmNsis",
"lmNull",
"lmPascal",
"lmPerl",
"lmPowerShell",
"lmProps",
"lmPython",
"lmRuby",
"lmSQL",
"lmTCL",
"lmVB",
"lmVBScript",
"lmXML",
"lmYAML",
"lmVHDL"
);
var fso = new ActiveXObject("Scripting.FileSystemObject");
var fh = fso.OpenTextFile("scintilla\\src\\Catalogue.cxx",1,0);
if (!fh.AtEndOfStream) {
var str = fh.ReadAll();
str = str.replace(
/^(\s*)\/\/(LINK_LEXER)/gim,
"$1$2");
var re = new RegExp("^(\\s*)(LINK_LEXER\\((?!"+lex.join("|")+")\\w+\\);)","gim");
str = str.replace(re,"$1//$2");
fh.Close();
var fh = fso.OpenTextFile("scintilla\\src\\Catalogue.cxx",2,0);
fh.Write(str);
}