forked from aniani/vim
updated for version 7.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.
This commit is contained in:
@@ -2270,9 +2270,7 @@ clip_mch_request_selection(VimClipboard *cbd)
|
||||
default:
|
||||
case 'L': type = MLINE; break;
|
||||
case 'C': type = MCHAR; break;
|
||||
#ifdef FEAT_VISUAL
|
||||
case 'B': type = MBLOCK; break;
|
||||
#endif
|
||||
}
|
||||
}
|
||||
|
||||
@@ -2799,9 +2797,7 @@ Win16SetClipboardData(
|
||||
default:
|
||||
case MLINE: clip_sel_type = "L"; break;
|
||||
case MCHAR: clip_sel_type = "C"; break;
|
||||
#ifdef FEAT_VISUAL
|
||||
case MBLOCK: clip_sel_type = "B"; break;
|
||||
#endif
|
||||
}
|
||||
|
||||
movedata(
|
||||
|
||||
Reference in New Issue
Block a user