lynx-dev
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

lynx-dev Fixing the display corruption bug for pdcurses/slang lynx.exe


From: vtailor
Subject: lynx-dev Fixing the display corruption bug for pdcurses/slang lynx.exe
Date: Tue, 9 Nov 1999 11:17:39 -0600 (CST)

The code causing the display corruption is in XSystem.c.  The following
fix restores the display properly after calling a viewer in both pdcurses
and slang lynx.exe:

#ifdef __MINGW32__
int exec_command(char * cmd, int wait_flag)
{
        return system(cmd);
}
#else
int exec_command(char * cmd, int wait_flag)
{
    PRO *p;
    char *pif;
    int rc = 0;
    int cmd_str;
        ...
}
#endif

reply via email to

[Prev in Thread] Current Thread [Next in Thread]