Jean-Marc Lasgouttes wrote:

>>>>>> "Angus" == Angus Leeming <[EMAIL PROTECTED]> writes:
> 
> Angus> Sorry about my language. It was meant to sound pejorative.
> 
> Angus> Unfortunately, what works for you appears to break things for
> Angus> those running the Win32 port. Hence my suggestion: wrap the
> Angus> call to latex inside a script if such manipulation is needed.
> 
> Angus, are you sure that Kayvan's hack has been applied to the
> source? I do not think so.
> 
> JMarc

This is from the 13x tree, os_win32.C. The hack is the subst line...

string os::external_path(string const & p) {
        string dos_path=p;
        if (is_absolute_path(p)) {
                char dp[255];
                cygwin_conv_to_full_win32_path(p.c_str(), dp);
                dos_path=subst(dp,'\\','/');
        }
        lyxerr[Debug::LATEX]
                << "<Win32 path correction> ["
                << p << "]->>["
                << dos_path << ']' << endl;
        return dos_path;
}

-- 
Angus

Reply via email to