José, do you agree with the fix? Jürgen
spitz wrote: > URL: http://www.lyx.org/trac/changeset/22884 > Log: > * lib/lyx2lyx/LyX.py (get_encoding): > - handle the "utf8x" inputenc option (part of bug 4503). > > Modified: > lyx-devel/trunk/lib/lyx2lyx/LyX.py > > Modified: lyx-devel/trunk/lib/lyx2lyx/LyX.py > URL: > http://www.lyx.org/trac/file/lyx-devel/trunk/lib/lyx2lyx/LyX.py?rev=22884 > =========================================================================== >=== --- lyx-devel/trunk/lib/lyx2lyx/LyX.py (original) > +++ lyx-devel/trunk/lib/lyx2lyx/LyX.py Sat Feb 9 08:52:26 2008 > @@ -132,6 +132,8 @@ > return lang[language][3] > if inputencoding == "": > return "latin1" > + if inputencoding == "utf8x": > + return "utf8" > # python does not know the alias latin9 > if inputencoding == "latin9": > return "iso-8859-15"