comparison src/if_perl.xs @ 3417:7613c9ab083f v7.3.474

updated for version 7.3.474 Problem: Perl build with gcc 4 fails. Solution: Remove XS() statements. (Yasuhiro Matsumoto)
author Bram Moolenaar <bram@vim.org>
date Fri, 16 Mar 2012 19:34:47 +0100
parents dec4338a7da2
children a46a101bfddd
comparison
equal deleted inserted replaced
3416:2d2eca5f8a8d 3417:7613c9ab083f
911 int win_valid(win_T *w) { return TRUE; } 911 int win_valid(win_T *w) { return TRUE; }
912 int win_count() { return 1; } 912 int win_count() { return 1; }
913 win_T *win_find_nr(int n) { return curwin; } 913 win_T *win_find_nr(int n) { return curwin; }
914 #endif 914 #endif
915 915
916 XS(XS_VIM_Msg);
917 XS(XS_VIM_SetOption);
918 XS(XS_VIM_DoCommand);
919 XS(XS_VIM_Eval);
920 XS(XS_VIM_Buffers);
921 XS(XS_VIM_Windows);
922 XS(XS_VIWIN_DESTROY);
923 XS(XS_VIWIN_Buffer);
924 XS(XS_VIWIN_SetHeight);
925 XS(XS_VIWIN_Cursor);
926 XS(XS_VIBUF_DESTROY);
927 XS(XS_VIBUF_Name);
928 XS(XS_VIBUF_Number);
929 XS(XS_VIBUF_Count);
930 XS(XS_VIBUF_Get);
931 XS(XS_VIBUF_Set);
932 XS(XS_VIBUF_Delete);
933 XS(XS_VIBUF_Append);
934 XS(boot_VIM); 916 XS(boot_VIM);
935 917
936 static void 918 static void
937 xs_init(pTHX) 919 xs_init(pTHX)
938 { 920 {