mirror of
https://git.lyx.org/repos/lyx.git
synced 2024-11-09 18:31:04 +00:00
Limit ligature protection to quote ligature chars
Should also go to stable.
This commit is contained in:
parent
a5ebabbb99
commit
d4550b7a4d
@ -310,7 +310,7 @@ void InsetQuotes::latex(otexstream & os, OutputParams const & runparams) const
|
||||
if (lastchar == '!' || lastchar == '?')
|
||||
qstr.insert(0, "{}");
|
||||
}
|
||||
if (qstr[0] == lastchar)
|
||||
if (contains(from_ascii(",'`<>"), lastchar) && qstr[0] == lastchar)
|
||||
qstr.insert(0, "{}");
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user