summaryrefslogtreecommitdiff
path: root/tools/lpgen/lpgen.js
diff options
context:
space:
mode:
authorRobert Pösel <robyer@seznam.cz>2013-06-25 19:24:21 +0000
committerRobert Pösel <robyer@seznam.cz>2013-06-25 19:24:21 +0000
commitbede4cb94337011df75ba1999cd0fc9041163347 (patch)
tree5620c830661252ed8cbc631cbbdab6e37df4fad9 /tools/lpgen/lpgen.js
parentc3bf2345b385f15a5cd8d04478abdaf6f8468712 (diff)
fix for previous commit
git-svn-id: http://svn.miranda-ng.org/main/trunk@5132 1316c22d-e87f-b044-9b9b-93d7a3e3ba9c
Diffstat (limited to 'tools/lpgen/lpgen.js')
-rw-r--r--tools/lpgen/lpgen.js6
1 files changed, 3 insertions, 3 deletions
diff --git a/tools/lpgen/lpgen.js b/tools/lpgen/lpgen.js
index 310496a524..c580722019 100644
--- a/tools/lpgen/lpgen.js
+++ b/tools/lpgen/lpgen.js
@@ -420,9 +420,9 @@ function ParseRCFile(FileTextVar,array) {
while ((string = find.exec(FileTextVar)) != null) {
// check for some garbage like "List1","Tab1" etc. in *.rc files, we do not need this.
onestring=string[2].replace(/^((List|Tab|Tree|Spin|Custom|Slider|DateTimePicker|Radio|Check|HotKey|Progress)\d)|(whiterect)$/g,"");
- // remove some popup menu craps
- if (string[1]=="POPUP")
- onestring=onestring.replace(/^([a-zA-Z]*menu)|([A-Z][a-z]+[A-Z][a-z]*|dummy)$/g,"");
+ // ignore some popup menu craps
+ if (string[1]=="POPUP" && onestring.match(/^([a-zA-Z]*menu)|([A-Z][a-z]+[A-Z][a-z]*|dummy)$/g,""))
+ continue;
//if there is double "", replace with single one
onestring=onestring.replace(/\"{2}/g,"\"");
//check result. If it does not match [a-z] (no any letter in results, such as "..." or "->") it's a crap, break further actions.