summaryrefslogtreecommitdiff
path: root/src/ops.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2016-08-10 20:53:05 +0200
committerBram Moolenaar <Bram@vim.org>2016-08-10 20:53:05 +0200
commita6b7a08ae04a3cd4d9c45c906bb7a197e2135179 (patch)
tree2adc8f539865a19045daac26adb5de10a4522f88 /src/ops.c
parenta357e44ccdf5cfe9f6d35cc348ca33ccd973e1a9 (diff)
downloadvim-git-a6b7a08ae04a3cd4d9c45c906bb7a197e2135179.tar.gz
patch 7.4.2192v7.4.2192
Problem: Generating prototypes with Cygwin doesn't work well. Solution: Change #ifdefs. (Ken Takata)
Diffstat (limited to 'src/ops.c')
-rw-r--r--src/ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/ops.c b/src/ops.c
index 1767eb521..325a95b7f 100644
--- a/src/ops.c
+++ b/src/ops.c
@@ -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)
{