commit e4c46abeb7385960c9dd42494e3c7c1f3e699b56
Author: Juergen Spitzmueller <[email protected]>
Date: Wed Dec 7 16:50:54 2016 +0100
Fix mis-nomer
---
src/insets/InsetQuotes.cpp | 4 ++--
1 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/src/insets/InsetQuotes.cpp b/src/insets/InsetQuotes.cpp
index 84dbe1a..0773e28 100644
--- a/src/insets/InsetQuotes.cpp
+++ b/src/insets/InsetQuotes.cpp
@@ -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]);
}