diff options
author | Bram Moolenaar <Bram@vim.org> | 2008-07-14 09:52:40 +0000 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2008-07-14 09:52:40 +0000 |
commit | b71328322526a1c1cca160a46c1abf391b01d218 (patch) | |
tree | 6ad0830fd0a6666d8b9ff9f59c84a0cb72b67603 /src/mbyte.c | |
parent | c236c16d0884c7d6cdc4dbaddb8cb3992085f83e (diff) | |
download | vim-git-b71328322526a1c1cca160a46c1abf391b01d218.tar.gz |
updated for version 7.2b-001v7.2b.001
Diffstat (limited to 'src/mbyte.c')
-rw-r--r-- | src/mbyte.c | 6 |
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mbyte.c b/src/mbyte.c index 38bec9d8b..a2100b0f5 100644 --- a/src/mbyte.c +++ b/src/mbyte.c @@ -2448,8 +2448,6 @@ dbcs_head_off(base, p) return (q == p) ? 0 : 1; } -#if defined(FEAT_CLIPBOARD) || defined(FEAT_GUI) || defined(FEAT_RIGHTLEFT) \ - || defined(PROTO) /* * Special version of dbcs_head_off() that works for ScreenLines[], where * single-width DBCS_JPNU characters are stored separately. @@ -2484,7 +2482,6 @@ dbcs_screen_head_off(base, p) } return (q == p) ? 0 : 1; } -#endif int utf_head_off(base, p) @@ -2934,8 +2931,6 @@ mb_lefthalve(row, col) LineOffset[row] + screen_Columns) > 1; } -# if defined(FEAT_CLIPBOARD) || defined(FEAT_GUI) || defined(FEAT_RIGHTLEFT) \ - || defined(PROTO) /* * Correct a position on the screen, if it's the right halve of a double-wide * char move it to the left halve. Returns the corrected column. @@ -2956,7 +2951,6 @@ mb_fix_col(col, row) return col - 1; return col; } -# endif #endif #if defined(FEAT_MBYTE) || defined(FEAT_POSTSCRIPT) || defined(PROTO) |