Do not replace "--" with "\twohyphens" in formula macros.

(cherry picked from commit 5cb5d2cb5a)
This commit is contained in:
Richard Heck 2017-01-18 21:47:40 -05:00
parent 6fbe470b23
commit dc7a5ecea1
2 changed files with 2 additions and 1 deletions

View File

@ -620,7 +620,7 @@ def convert_dashes(document):
while i < len(document.body):
words = document.body[i].split()
if len(words) > 1 and words[0] == "\\begin_inset" and \
words[1] in ["CommandInset", "ERT", "External", "Formula", "Graphics", "IPA", "listings"]:
words[1] in ["CommandInset", "ERT", "External", "Formula", "FormulaMacro", "Graphics", "IPA", "listings"]:
# must not replace anything in insets that store LaTeX contents in .lyx files
# (math and command insets withut overridden read() and write() methods
# filtering out IPA makes Text::readParToken() more simple

View File

@ -124,6 +124,7 @@ What's new
* LYX2LYX
- Do not convert "--" to "\twohyphens" in formula macros.
* USER INTERFACE