c9c9732505
Copy from devel:libraries:c_c++/hunspell based on submit request 33102 from user msmeissn OBS-URL: https://build.opensuse.org/request/show/33102 OBS-URL: https://build.opensuse.org/package/show/openSUSE:Factory/hunspell?expand=0&rev=15
21 lines
976 B
Diff
21 lines
976 B
Diff
--- src/hunspell/affixmgr.cxx
|
|
+++ src/hunspell/affixmgr.cxx
|
|
@@ -4276,7 +4276,7 @@
|
|
if (strip[i] == cond[j]) in = 1;
|
|
} while ((j < (condl - 1)) && (cond[j] != ']'));
|
|
if (j == (condl - 1) && (cond[j] != ']')) {
|
|
- HUNSPELL_WARNING(stderr, "error: line %d: missing ] in condition:\n%s\n", linenum);
|
|
+ HUNSPELL_WARNING(stderr, "error: line %d: missing ] in condition:\n%s\n", linenum, cond);
|
|
return 0;
|
|
}
|
|
if ((!neg && !in) || (neg && in)) {
|
|
@@ -4304,7 +4304,7 @@
|
|
if (strip[i] == cond[j]) in = 1;
|
|
} while ((j > 0) && (cond[j] != '['));
|
|
if ((j == 0) && (cond[j] != '[')) {
|
|
- HUNSPELL_WARNING(stderr, "error: error: %d: missing ] in condition:\n%s\n", linenum);
|
|
+ HUNSPELL_WARNING(stderr, "error: error: %d: missing ] in condition:\n%s\n", linenum, cond);
|
|
return 0;
|
|
}
|
|
neg = (cond[j+1] == '^') ? 1 : 0;
|