summaryrefslogtreecommitdiffstats
path: root/src/if_perl.xs
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2008-07-24 14:24:48 +0000
committerBram Moolenaar <Bram@vim.org>2008-07-24 14:24:48 +0000
commit01dd60cb9156c4a361558995323c018d2ead7ad1 (patch)
tree291fbef29826e7a1ae970a557cf2aae9ecdab7c6 /src/if_perl.xs
parent688e5f7ee7e9384494e9c16ae48c512980c54e4f (diff)
updated for version 7.2b-014v7.2b.014
Diffstat (limited to 'src/if_perl.xs')
-rw-r--r--src/if_perl.xs6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/if_perl.xs b/src/if_perl.xs
index a6994f694e..5b0449a112 100644
--- a/src/if_perl.xs
+++ b/src/if_perl.xs
@@ -843,6 +843,12 @@ err:
}
}
+#ifndef FEAT_WINDOWS
+int win_valid(win_T *w) { return TRUE; }
+int win_count() { return 1; }
+win_T *win_find_nr(int n) { return curwin; }
+#endif
+
XS(XS_VIM_Msg);
XS(XS_VIM_SetOption);
XS(XS_VIM_DoCommand);