diff options
author | Andrew Gvozdev | 2010-07-28 22:57:19 +0000 |
---|---|---|
committer | Andrew Gvozdev | 2010-07-28 22:57:19 +0000 |
commit | 739f1e403e4c10dc9e0fc6fb4001c4861fdd811e (patch) | |
tree | a1a373f3e43e4d849c09d9583409993c61462cb7 /xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties | |
parent | ba337c9707b9d53086f28c2a6003b9fcae44b7da (diff) | |
download | org.eclipse.cdt-739f1e403e4c10dc9e0fc6fb4001c4861fdd811e.tar.gz org.eclipse.cdt-739f1e403e4c10dc9e0fc6fb4001c4861fdd811e.tar.xz org.eclipse.cdt-739f1e403e4c10dc9e0fc6fb4001c4861fdd811e.zip |
bug 321160: Confusing message about redefined macro from xlc error parser
Diffstat (limited to 'xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties')
-rw-r--r-- | xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties b/xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties index 89c0bddd88c..916d7f31777 100644 --- a/xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties +++ b/xlc/org.eclipse.cdt.errorparsers.xlc/plugin.properties @@ -20,12 +20,14 @@ CDTXLCErrorParser.name=CDT xlC Error Parser # Translators: do not translate patterns below. We currently do not support NL versions of the XL C/C++ compilers. # Following are patterns of xlC compiler messages. While translating the patterns should be replaced -# with corresponding patterns matchind localized compiler messages +# with corresponding patterns matching localized compiler messages # START NON-TRANSLATABLE # "hello.c", line 5.9: 1506-358 (I) "MACRO" is defined on line 3 of hello.h. CDTXLCErrorParser.pattern.macro=["]?(.*?)["]?, line ([0-9]+)\\.[0-9]+:( [0-9]*-[0-9]*)? \\(I\\)\\s*["]?(\\w*)["]? is defined on line ([0-9]+) of (.*)\\. -CDTXLCErrorParser.pattern.macro.replacement=Macro name $4 originally defined in file $6 +CDTXLCErrorParser.pattern.macro.replacement=Macro name $4 has been redefined on line $2 of $1 +CDTXLCErrorParser.pattern.macro.crossreference=Macro name $4 redefines macro originally defined on line $5 of $6 +CDTXLCErrorParser.pattern.macro.ignore=["]?(.*?)["]?, line ([0-9]+)\\.[0-9]+:( [0-9]*-[0-9]*)? \\(W\\)\\s*Macro name .* has been redefined\\. # "main.cpp", line 10.6: 1540-0064 (S) Syntax error: "name" was expected but "char" was found. CDTXLCErrorParser.pattern.error=["]?(.*?)["]?, line ([0-9]+)\\.[0-9]+:( [0-9]*-[0-9]*)? \\([USE]\\)\\s*(.*) CDTXLCErrorParser.pattern.warning=["]?(.*?)["]?, line ([0-9]+)\\.[0-9]+:( [0-9]*-[0-9]*)? \\(W\\)\\s*(.*) |