0
0
mirror of https://github.com/vim/vim.git synced 2025-09-23 03:43:49 -04:00

updated for version 7.3.1266

Problem:    QNX: GUI fails to start.
Solution:   Remove the QNX-specific #ifdef. (Sean Boudreau)
This commit is contained in:
Bram Moolenaar
2013-06-29 15:19:21 +02:00
parent 630a730f9b
commit a8e3580be6
2 changed files with 2 additions and 7 deletions

View File

@@ -206,12 +206,6 @@ gui_attempt_start()
static void
gui_do_fork()
{
#ifdef __QNXNTO__
procmgr_daemon(0, PROCMGR_DAEMON_KEEPUMASK | PROCMGR_DAEMON_NOCHDIR |
PROCMGR_DAEMON_NOCLOSE | PROCMGR_DAEMON_NODEVNULL);
gui_attempt_start();
return;
#else
int pipefd[2]; /* pipe between parent and child */
int pipe_error;
int status;
@@ -316,7 +310,6 @@ gui_do_fork()
/* If we failed to start the GUI, exit now. */
if (!gui.in_use)
exit(1);
#endif
}
/*