0
0
mirror of https://github.com/vim/vim.git synced 2025-09-26 04:04:07 -04:00

patch 7.4.2192

Problem:    Generating prototypes with Cygwin doesn't work well.
Solution:   Change #ifdefs. (Ken Takata)
This commit is contained in:
Bram Moolenaar
2016-08-10 20:53:05 +02:00
parent a357e44ccd
commit a6b7a08ae0
9 changed files with 13 additions and 9 deletions

View File

@@ -6283,7 +6283,7 @@ write_viminfo_registers(FILE *fp)
* 'permanent' of the two), otherwise the PRIMARY one.
* For now, use a hard-coded sanity limit of 1Mb of data.
*/
#if defined(FEAT_X11) && defined(FEAT_CLIPBOARD)
#if (defined(FEAT_X11) && defined(FEAT_CLIPBOARD)) || defined(PROTO)
void
x11_export_final_selection(void)
{