diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-12-12 11:33:30 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-12-12 11:33:30 +0000 |
commit | d8b0cf1cc5231e19116cc3208b680a07f842bfe9 (patch) | |
tree | ef1ddd7a76427ea943296528bce82c73d5c34a1d /src/vim.h | |
parent | 293ee4d421cd55f4a3c014c1c26edf02f718cc83 (diff) | |
download | vim-d8b0cf1cc5231e19116cc3208b680a07f842bfe9.zip |
updated for version 7.0022
Diffstat (limited to 'src/vim.h')
-rw-r--r-- | src/vim.h | 9 |
1 files changed, 4 insertions, 5 deletions
@@ -1843,12 +1843,11 @@ typedef int VimClipboard; /* This is required for the prototypes. */ # include <XSUB.h> #endif -/* values for handle_sighup() */ -#define SIGHUP_RCV 1 -#define SIGHUP_BLOCK 2 -#define SIGHUP_UNBLOCK 3 +/* values for handle_signal() that are not a signal */ +#define SIGNAL_BLOCK -1 +#define SIGNAL_UNBLOCK -2 #ifndef UNIX -# define handle_sighup(x) /* nothing */ +# define handle_signal(x) 0 #endif #endif /* VIM__H */ |