diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-30 22:06:41 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-30 22:06:41 +0000 |
commit | 7fae636fc8b8e7227ead988ae1120066db12096c (patch) | |
tree | 49a671f115679b40f7fd0cb0c9da50e8ab00fcb2 /src/os_win16.h | |
parent | d042c56e34b5c032e79fa1fee19ce6d16ac99e49 (diff) | |
download | vim-git-7fae636fc8b8e7227ead988ae1120066db12096c.tar.gz |
updated for version 7.0098v7.0098
Diffstat (limited to 'src/os_win16.h')
-rw-r--r-- | src/os_win16.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/os_win16.h b/src/os_win16.h index 93b5891f6..7dd3b9fd0 100644 --- a/src/os_win16.h +++ b/src/os_win16.h @@ -14,7 +14,6 @@ #define BINARY_FILE_IO #define USE_EXE_NAME /* use argv[0] for $VIM */ -#define NO_COOKED_INPUT /* mch_inchar() doesn't return whole lines */ #define SYNC_DUP_CLOSE /* sync() a file with dup() and close() */ #define USE_TERM_CONSOLE #define HAVE_STRING_H @@ -106,8 +105,6 @@ typedef long off_t; # define ASSERT(f) assert(f) # endif -# define VERIFY(f) ASSERT(f) -# define DEBUG_ONLY(f) (f) # define TRACE Trace # define TRACE0(sz) Trace(_T("%s"), _T(sz)) # define TRACE1(sz, p1) Trace(_T(sz), p1) @@ -122,8 +119,6 @@ Trace(char *pszFormat, ...); /* These macros should all compile away to nothing */ # define ASSERT(f) ((void)0) -# define VERIFY(f) ((void)f) -# define DEBUG_ONLY(f) ((void)0) # define TRACE 1 ? (void)0 : printf # define TRACE0(sz) # define TRACE1(sz, p1) |