summaryrefslogtreecommitdiff
path: root/src/os_qnx.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2014-03-23 15:13:05 +0100
committerBram Moolenaar <Bram@vim.org>2014-03-23 15:13:05 +0100
commitf7ff6e85e8a4e84cff023f5db4b66ef85986605a (patch)
tree813913a9c1d1418b5b85e3a4bc414dbeb2b3f6a3 /src/os_qnx.c
parenta68783751647e3243ca6f22df62907efbdbccb02 (diff)
downloadvim-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.c4
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);