diff options
author | Caolán McNamara <caolanm@redhat.com> | 2013-03-14 11:26:26 +0000 |
---|---|---|
committer | Caolán McNamara <caolanm@redhat.com> | 2013-03-14 11:27:41 +0000 |
commit | 18c1fa36b642cb82b070239b18e937236212e816 (patch) | |
tree | 37b16b453a45c6065fc073dd64294e81e5e496d4 /hunspell | |
parent | 6594838457152b2fa53382ac11b383d2adc1f8da (diff) |
safer order of replacement
Change-Id: I912dbb6eddbb91bd9d5e18fb169f498df692d0e6
Diffstat (limited to 'hunspell')
-rw-r--r-- | hunspell/hunspell.rhbz918938.patch | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/hunspell/hunspell.rhbz918938.patch b/hunspell/hunspell.rhbz918938.patch index 8d235030a8ff..f1bdbd4ff8ba 100644 --- a/hunspell/hunspell.rhbz918938.patch +++ b/hunspell/hunspell.rhbz918938.patch @@ -57,8 +57,8 @@ + std::string entry((*slst)[i]); free((*slst)[i]); + myrep(entry, "\t", " "); -+ myrep(entry, "<", "<"); + myrep(entry, "&", "&"); ++ myrep(entry, "<", "<"); + r.append(entry); + + r.append("</a>"); |