aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/vim.h
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2014-07-22 15:24:56 -0400
committerJustin M. Keyes <justinkz@gmail.com>2014-07-22 15:24:56 -0400
commitba04a1c30674523fb7880b3003d8087ed7852cd9 (patch)
treebd9347f6efe81084eb4b703f6f5b6bbbaccffdc4 /src/nvim/vim.h
parent845d1bfa905cf0d28d9a1a662e42525449dd1be4 (diff)
parent7a2ea275eb5964f4a9b875ca273068fb9b40c81d (diff)
downloadrneovim-ba04a1c30674523fb7880b3003d8087ed7852cd9.tar.gz
rneovim-ba04a1c30674523fb7880b3003d8087ed7852cd9.tar.bz2
rneovim-ba04a1c30674523fb7880b3003d8087ed7852cd9.zip
Merge pull request #904 from war1025/dev/buffer_tests
Add unit tests for buffer.c and fileio.c
Diffstat (limited to 'src/nvim/vim.h')
-rw-r--r--src/nvim/vim.h12
1 files changed, 0 insertions, 12 deletions
diff --git a/src/nvim/vim.h b/src/nvim/vim.h
index 5d903633e4..6479aeaafb 100644
--- a/src/nvim/vim.h
+++ b/src/nvim/vim.h
@@ -45,18 +45,6 @@ Error: configure did not run properly.Check auto/config.log.
#include "nvim/os_unix_defs.h" /* bring lots of system header files */
-/*
- * Maximum length of a path (for non-unix systems) Make it a bit long, to stay
- * on the safe side. But not too long to put on the stack.
- */
-#ifndef MAXPATHL
-# ifdef MAXPATHLEN
-# define MAXPATHL MAXPATHLEN
-# else
-# define MAXPATHL 256
-# endif
-#endif
-
#define NUMBUFLEN 30 /* length of a buffer to store a number in ASCII */
# define MAX_TYPENR 65535