summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBram Moolenaar <bram@vim.org>2013-06-29 15:19:21 +0200
committerBram Moolenaar <bram@vim.org>2013-06-29 15:19:21 +0200
commit6a65151d8649560f359d2d87a08ae64b630b1057 (patch)
tree47effa5bb8e7af283b91b9ef52f8579c074a7cd4
parent1e1a4fdd3fd6f4f3aa47f302dbb6c162cb272cc5 (diff)
downloadvim-6a65151d8649560f359d2d87a08ae64b630b1057.tar.gz
updated for version 7.3.1266v7.3.1266v7-3-1266
Problem: QNX: GUI fails to start. Solution: Remove the QNX-specific #ifdef. (Sean Boudreau)
-rw-r--r--src/gui.c7
-rw-r--r--src/version.c2
2 files changed, 2 insertions, 7 deletions
diff --git a/src/gui.c b/src/gui.c
index 6b7806c6..06a99e6c 100644
--- a/src/gui.c
+++ b/src/gui.c
@@ -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
}
/*
diff --git a/src/version.c b/src/version.c
index 1d85f732..b35ed20a 100644
--- a/src/version.c
+++ b/src/version.c
@@ -729,6 +729,8 @@ static char *(features[]) =
static int included_patches[] =
{ /* Add new patch number below this line */
/**/
+ 1266,
+/**/
1265,
/**/
1264,