summaryrefslogtreecommitdiffstats
path: root/src/macros.h
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2004-07-03 16:05:59 +0000
committerBram Moolenaar <Bram@vim.org>2004-07-03 16:05:59 +0000
commit592e0a2a1dbc542134c3fd88b4cdfa40e258f41b (patch)
tree40969df9b211be9ffd5523f7a9cc70e445cac973 /src/macros.h
parentcfbc5ee48e1b582f418f2d92ccbc4c4e84c803e1 (diff)
updated for version 7.0005
Diffstat (limited to 'src/macros.h')
-rw-r--r--src/macros.h5
1 files changed, 5 insertions, 0 deletions
diff --git a/src/macros.h b/src/macros.h
index 9dbb393f5c..6506aee873 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