commit | 592e0a2a1dbc542134c3fd88b4cdfa40e258f41b | [log] [tgz] |
---|---|---|
author | Bram Moolenaar <Bram@vim.org> | Sat Jul 03 16:05:59 2004 +0000 |
committer | Bram Moolenaar <Bram@vim.org> | Sat Jul 03 16:05:59 2004 +0000 |
tree | 40969df9b211be9ffd5523f7a9cc70e445cac973 | |
parent | cfbc5ee48e1b582f418f2d92ccbc4c4e84c803e1 [diff] [blame] |
updated for version 7.0005
diff --git a/src/macros.h b/src/macros.h index 9dbb393..6506aee 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