> Author: rgheck > Date: Sun Jan 16 21:28:43 2011 > New Revision: 37233 > URL: http://www.lyx.org/trac/changeset/37233 > > > -int LyXRC::read(FileName const & filename) > +bool LyXRC::read(FileName const & filename) > { > [...] > + bool const success = prefs2prefs(filename, tempfile, false);
This makes LyX unusable at Windows. Prefs2prefs need python to run. Therefore Windows needs to add the path to python to the environment path before. However, the path is stored in the preferences, so we first need to read the preferences, but that is what we are doing here. In short, we will never be able to run prefs2prefs and I can't start LyX anymore. Vincent
