diff options
author | Bram Moolenaar <Bram@vim.org> | 2004-07-03 16:05:59 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2004-07-03 16:05:59 +0000 |
commit | 592e0a2a1dbc542134c3fd88b4cdfa40e258f41b (patch) | |
tree | 40969df9b211be9ffd5523f7a9cc70e445cac973 /src/macros.h | |
parent | cfbc5ee48e1b582f418f2d92ccbc4c4e84c803e1 (diff) | |
download | vim-git-592e0a2a1dbc542134c3fd88b4cdfa40e258f41b.tar.gz |
updated for version 7.0005
Diffstat (limited to 'src/macros.h')
-rw-r--r-- | src/macros.h | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/macros.h b/src/macros.h index 9dbb393f5..6506aee87 100644 --- a/src/macros.h +++ b/src/macros.h @@ -243,3 +243,8 @@ /* Whether to draw the vertical bar on the right side of the cell. */ # 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 |