diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-06-30 21:56:01 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-06-30 21:56:01 +0000 |
commit | e6b165e0f4f70d22a4fbcc5c9a1818417bdb1b04 (patch) | |
tree | 584373ca902692085457b72a232ad58956987f6e /src/os_win32.h | |
parent | 9c96f592af7a88e63ebf63f82d1b36b3954af401 (diff) | |
download | vim-git-e6b165e0f4f70d22a4fbcc5c9a1818417bdb1b04.tar.gz |
updated for version 7.0098
Diffstat (limited to 'src/os_win32.h')
-rw-r--r-- | src/os_win32.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/os_win32.h b/src/os_win32.h index d9aaa6e54..b83935924 100644 --- a/src/os_win32.h +++ b/src/os_win32.h @@ -17,7 +17,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 #ifndef HAVE_STRING_H @@ -146,8 +145,6 @@ # 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) @@ -163,8 +160,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) |