diff options
author | Bram Moolenaar <Bram@vim.org> | 2005-01-25 21:53:18 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2005-01-25 21:53:18 +0000 |
commit | 281bdcec60a64ccd0b613ecaf2379e46b21c9912 (patch) | |
tree | ee9ae0d64a0d6a1a9c79af614acb00f380e4e0f1 /src/macros.h | |
parent | aab21c3533cde8f667e06548db858237870b70e7 (diff) | |
download | vim-git-281bdcec60a64ccd0b613ecaf2379e46b21c9912.tar.gz |
updated for version 7.0044
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 9 |
1 files changed, 0 insertions, 9 deletions
diff --git a/src/macros.h b/src/macros.h index 6d6484c56..233df0f25 100644 --- a/src/macros.h +++ b/src/macros.h @@ -249,15 +249,6 @@ # define CURSOR_BAR_RIGHT (curwin->w_p_rl && (!(State & CMDLINE) || cmdmsg_rl)) #endif -#ifndef FEAT_LINEBREAK -/* Without the 'numberwidth' option line numbers are always 7 chars. */ -# define number_width(x) 7 -#endif - -#ifndef FEAT_MBYTE -# define after_pathsep(b, p) vim_ispathsep(*((p) - 1)) -#endif - /* * mb_ptr_adv(): advance a pointer to the next character, taking care of * multi-byte characters if needed. |