summaryrefslogtreecommitdiff
path: root/src/os_unix.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2004-10-24 19:18:58 +0000
committerBram Moolenaar <Bram@vim.org>2004-10-24 19:18:58 +0000
commit009b2592f7488286f286484b7f389e36fffa4bd9 (patch)
treec73d489697594d2c1216168f9bfb8763caed31f7 /src/os_unix.c
parent47136d70fafd8b101965b8d3d4bb72f5fe7dc231 (diff)
downloadvim-git-009b2592f7488286f286484b7f389e36fffa4bd9.tar.gz
updated for version 7.0020
Diffstat (limited to 'src/os_unix.c')
-rw-r--r--src/os_unix.c10
1 files changed, 10 insertions, 0 deletions
diff --git a/src/os_unix.c b/src/os_unix.c
index ffc696579..08e9fc8d2 100644
--- a/src/os_unix.c
+++ b/src/os_unix.c
@@ -959,6 +959,12 @@ deathtrap SIGDEFARG(sigarg)
#endif
preserve_exit(); /* preserve files and exit */
+#ifdef NBDEBUG
+ reset_signals();
+ may_core_dump();
+ abort();
+#endif
+
SIGRETURN;
}
@@ -2704,6 +2710,10 @@ mch_exit(r)
return;
#endif
+#ifdef FEAT_NETBEANS_INTG
+ if (usingNetbeans)
+ netbeans_send_disconnect();
+#endif
exit(r);
}