diff options
author | Bram Moolenaar <Bram@vim.org> | 2014-03-23 15:13:05 +0100 |
---|---|---|
committer | Bram Moolenaar <Bram@vim.org> | 2014-03-23 15:13:05 +0100 |
commit | f7ff6e85e8a4e84cff023f5db4b66ef85986605a (patch) | |
tree | 813913a9c1d1418b5b85e3a4bc414dbeb2b3f6a3 /src/os_qnx.c | |
parent | a68783751647e3243ca6f22df62907efbdbccb02 (diff) | |
download | vim-git-f7ff6e85e8a4e84cff023f5db4b66ef85986605a.tar.gz |
updated for version 7.4.212v7.4.212
Problem: Now that the +visual feature is always enabled the #ifdefs for it
are not useful.
Solution: Remove the checks for FEAT_VISUAL.
Diffstat (limited to 'src/os_qnx.c')
-rw-r--r-- | src/os_qnx.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/os_qnx.c b/src/os_qnx.c index d482b34fa..a8f12fa87 100644 --- a/src/os_qnx.c +++ b/src/os_qnx.c @@ -78,9 +78,7 @@ clip_mch_request_selection(VimClipboard *cbd) default: /* fallthrough to line type */ case 'L': type = MLINE; break; case 'C': type = MCHAR; break; -#ifdef FEAT_VISUAL case 'B': type = MBLOCK; break; -#endif } is_type_set = TRUE; } @@ -143,9 +141,7 @@ clip_mch_set_selection(VimClipboard *cbd) default: /* fallthrough to MLINE */ case MLINE: *vim_clip = 'L'; break; case MCHAR: *vim_clip = 'C'; break; -#ifdef FEAT_VISUAL case MBLOCK: *vim_clip = 'B'; break; -#endif } vim_strncpy(text_clip, str, len); |