Fix mis-nomer

This commit is contained in:
Juergen Spitzmueller 2016-12-07 16:50:54 +01:00
parent ad83520390
commit e4c46abeb7

View File

@ -88,7 +88,7 @@ char const * const latex_quote_babel[2][5] = {
{ "\\glqq ", "''", "``", "\\flqq{}", "\\frqq{}" }
};
char const * const latex_quote_html[2][5] = {
char const * const html_quote[2][5] = {
{ "‚", "’", "‘",
"‹", "›" },
{ "„", "”", "“", "«", "»" }
@ -297,7 +297,7 @@ int InsetQuotes::plaintext(odocstringstream & os,
docstring InsetQuotes::getQuoteEntity() const {
const int quoteind = quote_index[side_][language_];
return from_ascii(latex_quote_html[times_][quoteind]);
return from_ascii(html_quote[times_][quoteind]);
}