mirror of
https://git.lyx.org/repos/lyx.git
synced 2025-01-03 08:28:25 +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 == '?')
|
if (lastchar == '!' || lastchar == '?')
|
||||||
qstr.insert(0, "{}");
|
qstr.insert(0, "{}");
|
||||||
}
|
}
|
||||||
if (qstr[0] == lastchar)
|
if (contains(from_ascii(",'`<>"), lastchar) && qstr[0] == lastchar)
|
||||||
qstr.insert(0, "{}");
|
qstr.insert(0, "{}");
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user