blob: 286ceb7d718b82f54fc9d08239d29e5d5d486698 [file] [log] [blame]
Bram Moolenaar071d4272004-06-13 20:20:40 +00001/* vi:set ts=8 sts=4 sw=4:
2 *
3 * VIM - Vi IMproved by Bram Moolenaar
4 *
5 * Do ":help uganda" in Vim to read copying and usage conditions.
6 * Do ":help credits" in Vim to see a list of people who contributed.
7 */
8/*
9 * if_perl.xs: Main code for Perl interface support.
10 * Mostly written by Sven Verdoolaege.
11 */
12
13#define _memory_h /* avoid memset redeclaration */
14#define IN_PERL_FILE /* don't include if_perl.pro from proto.h */
15
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020016/*
Bram Moolenaar6b107212013-12-11 15:06:40 +010017 * Currently 32-bit version of ActivePerl is built with VC6 (or MinGW since
18 * ActivePerl 5.18).
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020019 * (http://community.activestate.com/faq/windows-compilers-perl-modules)
20 * It means that time_t should be 32-bit. However the default size of
21 * time_t is 64-bit since VC8. So we have to define _USE_32BIT_TIME_T.
22 */
23#if defined(WIN32) && !defined(_WIN64)
24# define _USE_32BIT_TIME_T
25#endif
26
Bram Moolenaar6b107212013-12-11 15:06:40 +010027/*
28 * Prevent including winsock.h. perl.h tries to detect whether winsock.h is
29 * already included before including winsock2.h, because winsock2.h isn't
30 * compatible with winsock.h. However the detection doesn't work with some
31 * versions of MinGW. If WIN32_LEAN_AND_MEAN is defined, windows.h will not
32 * include winsock.h.
33 */
34#ifdef WIN32
35# define WIN32_LEAN_AND_MEAN
36#endif
37
Bram Moolenaar071d4272004-06-13 20:20:40 +000038#include "vim.h"
39
Bram Moolenaar7c0daf02013-12-14 11:46:08 +010040/* Work around for perl-5.18.
41 * Don't include "perl\lib\CORE\inline.h" for now,
42 * include it after Perl_sv_free2 is defined. */
43#ifdef DYNAMIC_PERL
44# define PERL_NO_INLINE_FUNCTIONS
45#endif
46
Bram Moolenaar207fd752013-12-14 11:50:35 +010047/* Work around for using MSVC and ActivePerl 5.18. */
48#ifdef _MSC_VER
49# define __inline__ __inline
50#endif
51
Bram Moolenaaraee1f4a2013-08-02 16:10:32 +020052#include <EXTERN.h>
53#include <perl.h>
54#include <XSUB.h>
55
Bram Moolenaar071d4272004-06-13 20:20:40 +000056
57/*
58 * Work around clashes between Perl and Vim namespace. proto.h doesn't
59 * include if_perl.pro and perlsfio.pro when IN_PERL_FILE is defined, because
60 * we need the CV typedef. proto.h can't be moved to after including
61 * if_perl.h, because we get all sorts of name clashes then.
62 */
63#ifndef PROTO
64#ifndef __MINGW32__
65# include "proto/if_perl.pro"
66# include "proto/if_perlsfio.pro"
67#endif
68#endif
69
70/* Perl compatibility stuff. This should ensure compatibility with older
71 * versions of Perl.
72 */
73
74#ifndef PERL_VERSION
75# include <patchlevel.h>
76# define PERL_REVISION 5
77# define PERL_VERSION PATCHLEVEL
78# define PERL_SUBVERSION SUBVERSION
79#endif
80
Bram Moolenaar700d1d72007-09-13 13:20:16 +000081/*
82 * Quoting Jan Dubois of Active State:
83 * ActivePerl build 822 still identifies itself as 5.8.8 but already
84 * contains many of the changes from the upcoming Perl 5.8.9 release.
85 *
86 * The changes include addition of two symbols (Perl_sv_2iv_flags,
87 * Perl_newXS_flags) not present in earlier releases.
88 *
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +000089 * Jan Dubois suggested the following guarding scheme.
90 *
91 * Active State defined ACTIVEPERL_VERSION as a string in versions before
92 * 5.8.8; and so the comparison to 822 below needs to be guarded.
Bram Moolenaar700d1d72007-09-13 13:20:16 +000093 */
Bram Moolenaar3b9b13e2007-09-15 12:49:35 +000094#if (PERL_REVISION == 5) && (PERL_VERSION == 8) && (PERL_SUBVERSION >= 8)
95# if (ACTIVEPERL_VERSION >= 822) || (PERL_SUBVERSION >= 9)
96# define PERL589_OR_LATER
97# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +000098#endif
99#if (PERL_REVISION == 5) && (PERL_VERSION >= 9)
100# define PERL589_OR_LATER
101#endif
102
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100103#if (PERL_REVISION == 5) && ((PERL_VERSION > 10) || \
104 (PERL_VERSION == 10) && (PERL_SUBVERSION >= 1))
105# define PERL5101_OR_LATER
106#endif
107
Bram Moolenaar071d4272004-06-13 20:20:40 +0000108#ifndef pTHX
109# define pTHX void
110# define pTHX_
111#endif
112
113#ifndef EXTERN_C
114# define EXTERN_C
115#endif
116
Bram Moolenaarc271c482012-08-08 13:17:31 +0200117#if (PERL_REVISION == 5) && (PERL_VERSION >= 14) && defined(_MSC_VER)
118/* Using PL_errgv to get the error message after perl_eval_sv() causes a crash
119 * with MSVC and Perl version 5.14. */
120# define AVOID_PL_ERRGV
121#endif
122
Bram Moolenaar071d4272004-06-13 20:20:40 +0000123/* Compatibility hacks over */
124
125static PerlInterpreter *perl_interp = NULL;
126static void xs_init __ARGS((pTHX));
127static void VIM_init __ARGS((void));
128EXTERN_C void boot_DynaLoader __ARGS((pTHX_ CV*));
129
130/*
Bram Moolenaare06c1882010-07-21 22:05:20 +0200131 * For dynamic linked perl.
Bram Moolenaar071d4272004-06-13 20:20:40 +0000132 */
133#if defined(DYNAMIC_PERL) || defined(PROTO)
Bram Moolenaare06c1882010-07-21 22:05:20 +0200134
135#ifndef DYNAMIC_PERL /* just generating prototypes */
Bram Moolenaar766fb0d2010-07-22 11:34:16 +0200136#ifdef WIN3264
Bram Moolenaare06c1882010-07-21 22:05:20 +0200137typedef int HANDLE;
138#endif
139typedef int XSINIT_t;
140typedef int XSUBADDR_t;
Bram Moolenaard8619992014-03-12 17:08:05 +0100141#endif
142#ifndef USE_ITHREADS
Bram Moolenaare06c1882010-07-21 22:05:20 +0200143typedef int perl_key;
144#endif
145
Bram Moolenaar766fb0d2010-07-22 11:34:16 +0200146#ifndef WIN3264
Bram Moolenaare06c1882010-07-21 22:05:20 +0200147#include <dlfcn.h>
148#define HANDLE void*
149#define PERL_PROC void*
150#define load_dll(n) dlopen((n), RTLD_LAZY|RTLD_GLOBAL)
151#define symbol_from_dll dlsym
152#define close_dll dlclose
153#else
154#define PERL_PROC FARPROC
Bram Moolenaarebbcb822010-10-23 14:02:54 +0200155#define load_dll vimLoadLib
Bram Moolenaare06c1882010-07-21 22:05:20 +0200156#define symbol_from_dll GetProcAddress
157#define close_dll FreeLibrary
158#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000159/*
160 * Wrapper defines
161 */
162# define perl_alloc dll_perl_alloc
163# define perl_construct dll_perl_construct
164# define perl_parse dll_perl_parse
165# define perl_run dll_perl_run
166# define perl_destruct dll_perl_destruct
167# define perl_free dll_perl_free
168# define Perl_get_context dll_Perl_get_context
169# define Perl_croak dll_Perl_croak
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100170# ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100171# define Perl_croak_xs_usage dll_Perl_croak_xs_usage
172# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000173# ifndef PROTO
174# define Perl_croak_nocontext dll_Perl_croak_nocontext
175# define Perl_call_argv dll_Perl_call_argv
176# define Perl_call_pv dll_Perl_call_pv
177# define Perl_eval_sv dll_Perl_eval_sv
178# define Perl_get_sv dll_Perl_get_sv
179# define Perl_eval_pv dll_Perl_eval_pv
180# define Perl_call_method dll_Perl_call_method
181# endif
182# define Perl_dowantarray dll_Perl_dowantarray
183# define Perl_free_tmps dll_Perl_free_tmps
184# define Perl_gv_stashpv dll_Perl_gv_stashpv
185# define Perl_markstack_grow dll_Perl_markstack_grow
186# define Perl_mg_find dll_Perl_mg_find
187# define Perl_newXS dll_Perl_newXS
188# define Perl_newSV dll_Perl_newSV
189# define Perl_newSViv dll_Perl_newSViv
190# define Perl_newSVpv dll_Perl_newSVpv
191# define Perl_pop_scope dll_Perl_pop_scope
192# define Perl_push_scope dll_Perl_push_scope
193# define Perl_save_int dll_Perl_save_int
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200194# if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
195# define Perl_save_strlen dll_Perl_save_strlen
196# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000197# define Perl_stack_grow dll_Perl_stack_grow
198# define Perl_set_context dll_Perl_set_context
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200199# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
200# define Perl_sv_2bool_flags dll_Perl_sv_2bool_flags
Bram Moolenaar01c10522012-09-21 12:50:51 +0200201# define Perl_xs_apiversion_bootcheck dll_Perl_xs_apiversion_bootcheck
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200202# else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000203# define Perl_sv_2bool dll_Perl_sv_2bool
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200204# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000205# define Perl_sv_2iv dll_Perl_sv_2iv
206# define Perl_sv_2mortal dll_Perl_sv_2mortal
207# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
208# define Perl_sv_2pv_flags dll_Perl_sv_2pv_flags
209# define Perl_sv_2pv_nolen dll_Perl_sv_2pv_nolen
210# else
211# define Perl_sv_2pv dll_Perl_sv_2pv
212# endif
213# define Perl_sv_bless dll_Perl_sv_bless
214# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
215# define Perl_sv_catpvn_flags dll_Perl_sv_catpvn_flags
216# else
217# define Perl_sv_catpvn dll_Perl_sv_catpvn
218# endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000219#ifdef PERL589_OR_LATER
220# define Perl_sv_2iv_flags dll_Perl_sv_2iv_flags
221# define Perl_newXS_flags dll_Perl_newXS_flags
222#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000223# define Perl_sv_free dll_Perl_sv_free
Bram Moolenaarccf22172008-09-01 15:56:45 +0000224# if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
225# define Perl_sv_free2 dll_Perl_sv_free2
226# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000227# define Perl_sv_isa dll_Perl_sv_isa
228# define Perl_sv_magic dll_Perl_sv_magic
229# define Perl_sv_setiv dll_Perl_sv_setiv
230# define Perl_sv_setpv dll_Perl_sv_setpv
231# define Perl_sv_setpvn dll_Perl_sv_setpvn
232# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
233# define Perl_sv_setsv_flags dll_Perl_sv_setsv_flags
234# else
235# define Perl_sv_setsv dll_Perl_sv_setsv
236# endif
237# define Perl_sv_upgrade dll_Perl_sv_upgrade
238# define Perl_Tstack_sp_ptr dll_Perl_Tstack_sp_ptr
239# define Perl_Top_ptr dll_Perl_Top_ptr
240# define Perl_Tstack_base_ptr dll_Perl_Tstack_base_ptr
241# define Perl_Tstack_max_ptr dll_Perl_Tstack_max_ptr
242# define Perl_Ttmps_ix_ptr dll_Perl_Ttmps_ix_ptr
243# define Perl_Ttmps_floor_ptr dll_Perl_Ttmps_floor_ptr
244# define Perl_Tmarkstack_ptr_ptr dll_Perl_Tmarkstack_ptr_ptr
245# define Perl_Tmarkstack_max_ptr dll_Perl_Tmarkstack_max_ptr
246# define Perl_TSv_ptr dll_Perl_TSv_ptr
247# define Perl_TXpv_ptr dll_Perl_TXpv_ptr
248# define Perl_Tna_ptr dll_Perl_Tna_ptr
249# define Perl_Idefgv_ptr dll_Perl_Idefgv_ptr
250# define Perl_Ierrgv_ptr dll_Perl_Ierrgv_ptr
251# define Perl_Isv_yes_ptr dll_Perl_Isv_yes_ptr
252# define boot_DynaLoader dll_boot_DynaLoader
Bram Moolenaare06c1882010-07-21 22:05:20 +0200253# define Perl_Gthr_key_ptr dll_Perl_Gthr_key_ptr
Bram Moolenaar071d4272004-06-13 20:20:40 +0000254
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000255# define Perl_sys_init dll_Perl_sys_init
Bram Moolenaarc236c162008-07-13 17:41:49 +0000256# define Perl_sys_term dll_Perl_sys_term
257# define Perl_ISv_ptr dll_Perl_ISv_ptr
258# define Perl_Istack_max_ptr dll_Perl_Istack_max_ptr
259# define Perl_Istack_base_ptr dll_Perl_Istack_base_ptr
260# define Perl_Itmps_ix_ptr dll_Perl_Itmps_ix_ptr
261# define Perl_Itmps_floor_ptr dll_Perl_Itmps_floor_ptr
262# define Perl_IXpv_ptr dll_Perl_IXpv_ptr
263# define Perl_Ina_ptr dll_Perl_Ina_ptr
264# define Perl_Imarkstack_ptr_ptr dll_Perl_Imarkstack_ptr_ptr
265# define Perl_Imarkstack_max_ptr dll_Perl_Imarkstack_max_ptr
266# define Perl_Istack_sp_ptr dll_Perl_Istack_sp_ptr
267# define Perl_Iop_ptr dll_Perl_Iop_ptr
268# define Perl_call_list dll_Perl_call_list
269# define Perl_Iscopestack_ix_ptr dll_Perl_Iscopestack_ix_ptr
270# define Perl_Iunitcheckav_ptr dll_Perl_Iunitcheckav_ptr
Bram Moolenaar01c10522012-09-21 12:50:51 +0200271# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100272# ifdef USE_ITHREADS
273# define PL_thr_key *dll_PL_thr_key
274# endif
Bram Moolenaar01c10522012-09-21 12:50:51 +0200275# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000276
Bram Moolenaar071d4272004-06-13 20:20:40 +0000277/*
278 * Declare HANDLE for perl.dll and function pointers.
279 */
280static HANDLE hPerlLib = NULL;
281
282static PerlInterpreter* (*perl_alloc)();
283static void (*perl_construct)(PerlInterpreter*);
284static void (*perl_destruct)(PerlInterpreter*);
285static void (*perl_free)(PerlInterpreter*);
286static int (*perl_run)(PerlInterpreter*);
287static int (*perl_parse)(PerlInterpreter*, XSINIT_t, int, char**, char**);
288static void* (*Perl_get_context)(void);
Bram Moolenaara7ecc562006-08-16 16:17:39 +0000289static void (*Perl_croak)(pTHX_ const char*, ...);
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100290#ifdef PERL5101_OR_LATER
Bram Moolenaar6b107212013-12-11 15:06:40 +0100291/* Perl-5.18 has a different Perl_croak_xs_usage signature. */
292# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
293static void (*Perl_croak_xs_usage)(const CV *const, const char *const params);
294# else
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100295static void (*Perl_croak_xs_usage)(pTHX_ const CV *const, const char *const params);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100296# endif
Bram Moolenaar9be6e212013-06-15 16:47:35 +0200297#endif
Bram Moolenaara7ecc562006-08-16 16:17:39 +0000298static void (*Perl_croak_nocontext)(const char*, ...);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000299static I32 (*Perl_dowantarray)(pTHX);
300static void (*Perl_free_tmps)(pTHX);
301static HV* (*Perl_gv_stashpv)(pTHX_ const char*, I32);
302static void (*Perl_markstack_grow)(pTHX);
303static MAGIC* (*Perl_mg_find)(pTHX_ SV*, int);
304static CV* (*Perl_newXS)(pTHX_ char*, XSUBADDR_t, char*);
305static SV* (*Perl_newSV)(pTHX_ STRLEN);
306static SV* (*Perl_newSViv)(pTHX_ IV);
307static SV* (*Perl_newSVpv)(pTHX_ const char*, STRLEN);
308static I32 (*Perl_call_argv)(pTHX_ const char*, I32, char**);
309static I32 (*Perl_call_pv)(pTHX_ const char*, I32);
310static I32 (*Perl_eval_sv)(pTHX_ SV*, I32);
311static SV* (*Perl_get_sv)(pTHX_ const char*, I32);
312static SV* (*Perl_eval_pv)(pTHX_ const char*, I32);
313static SV* (*Perl_call_method)(pTHX_ const char*, I32);
314static void (*Perl_pop_scope)(pTHX);
315static void (*Perl_push_scope)(pTHX);
316static void (*Perl_save_int)(pTHX_ int*);
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200317#if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
318static void (*Perl_save_strlen)(pTHX_ STRLEN* ptr);
319#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000320static SV** (*Perl_stack_grow)(pTHX_ SV**, SV**p, int);
321static SV** (*Perl_set_context)(void*);
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200322#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
323static bool (*Perl_sv_2bool_flags)(pTHX_ SV*, I32);
324static void (*Perl_xs_apiversion_bootcheck)(pTHX_ SV *module, const char *api_p, STRLEN api_len);
325#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000326static bool (*Perl_sv_2bool)(pTHX_ SV*);
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200327#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000328static IV (*Perl_sv_2iv)(pTHX_ SV*);
329static SV* (*Perl_sv_2mortal)(pTHX_ SV*);
330#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
331static char* (*Perl_sv_2pv_flags)(pTHX_ SV*, STRLEN*, I32);
332static char* (*Perl_sv_2pv_nolen)(pTHX_ SV*);
333#else
334static char* (*Perl_sv_2pv)(pTHX_ SV*, STRLEN*);
335#endif
336static SV* (*Perl_sv_bless)(pTHX_ SV*, HV*);
337#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
338static void (*Perl_sv_catpvn_flags)(pTHX_ SV* , const char*, STRLEN, I32);
339#else
340static void (*Perl_sv_catpvn)(pTHX_ SV*, const char*, STRLEN);
341#endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000342#ifdef PERL589_OR_LATER
343static IV (*Perl_sv_2iv_flags)(pTHX_ SV* sv, I32 flags);
344static CV * (*Perl_newXS_flags)(pTHX_ const char *name, XSUBADDR_t subaddr, const char *const filename, const char *const proto, U32 flags);
345#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000346static void (*Perl_sv_free)(pTHX_ SV*);
347static int (*Perl_sv_isa)(pTHX_ SV*, const char*);
348static void (*Perl_sv_magic)(pTHX_ SV*, SV*, int, const char*, I32);
349static void (*Perl_sv_setiv)(pTHX_ SV*, IV);
350static void (*Perl_sv_setpv)(pTHX_ SV*, const char*);
351static void (*Perl_sv_setpvn)(pTHX_ SV*, const char*, STRLEN);
352#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
353static void (*Perl_sv_setsv_flags)(pTHX_ SV*, SV*, I32);
354#else
355static void (*Perl_sv_setsv)(pTHX_ SV*, SV*);
356#endif
357static bool (*Perl_sv_upgrade)(pTHX_ SV*, U32);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200358#if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000359static SV*** (*Perl_Tstack_sp_ptr)(register PerlInterpreter*);
360static OP** (*Perl_Top_ptr)(register PerlInterpreter*);
361static SV*** (*Perl_Tstack_base_ptr)(register PerlInterpreter*);
362static SV*** (*Perl_Tstack_max_ptr)(register PerlInterpreter*);
363static I32* (*Perl_Ttmps_ix_ptr)(register PerlInterpreter*);
364static I32* (*Perl_Ttmps_floor_ptr)(register PerlInterpreter*);
365static I32** (*Perl_Tmarkstack_ptr_ptr)(register PerlInterpreter*);
366static I32** (*Perl_Tmarkstack_max_ptr)(register PerlInterpreter*);
367static SV** (*Perl_TSv_ptr)(register PerlInterpreter*);
368static XPV** (*Perl_TXpv_ptr)(register PerlInterpreter*);
369static STRLEN* (*Perl_Tna_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200370#else
Bram Moolenaar6b107212013-12-11 15:06:40 +0100371/* Perl-5.18 has a different Perl_sv_free2 signature. */
372# if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
373static void (*Perl_sv_free2)(pTHX_ SV*, const U32);
374# else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000375static void (*Perl_sv_free2)(pTHX_ SV*);
Bram Moolenaar6b107212013-12-11 15:06:40 +0100376# endif
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000377static void (*Perl_sys_init)(int* argc, char*** argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000378static void (*Perl_sys_term)(void);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200379static void (*Perl_call_list)(pTHX_ I32, AV*);
380# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
381# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000382static SV** (*Perl_ISv_ptr)(register PerlInterpreter*);
383static SV*** (*Perl_Istack_max_ptr)(register PerlInterpreter*);
384static SV*** (*Perl_Istack_base_ptr)(register PerlInterpreter*);
385static XPV** (*Perl_IXpv_ptr)(register PerlInterpreter*);
386static I32* (*Perl_Itmps_ix_ptr)(register PerlInterpreter*);
387static I32* (*Perl_Itmps_floor_ptr)(register PerlInterpreter*);
388static STRLEN* (*Perl_Ina_ptr)(register PerlInterpreter*);
389static I32** (*Perl_Imarkstack_ptr_ptr)(register PerlInterpreter*);
390static I32** (*Perl_Imarkstack_max_ptr)(register PerlInterpreter*);
391static SV*** (*Perl_Istack_sp_ptr)(register PerlInterpreter*);
392static OP** (*Perl_Iop_ptr)(register PerlInterpreter*);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000393static I32* (*Perl_Iscopestack_ix_ptr)(register PerlInterpreter*);
394static AV** (*Perl_Iunitcheckav_ptr)(register PerlInterpreter*);
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200395# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000396#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000397
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200398#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100399# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200400static perl_key* dll_PL_thr_key;
Bram Moolenaard8619992014-03-12 17:08:05 +0100401# endif
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200402#else
Bram Moolenaare06c1882010-07-21 22:05:20 +0200403static GV** (*Perl_Idefgv_ptr)(register PerlInterpreter*);
404static GV** (*Perl_Ierrgv_ptr)(register PerlInterpreter*);
405static SV* (*Perl_Isv_yes_ptr)(register PerlInterpreter*);
Bram Moolenaare06c1882010-07-21 22:05:20 +0200406static perl_key* (*Perl_Gthr_key_ptr)_((pTHX));
Bram Moolenaarf5fe79a2012-09-21 12:42:44 +0200407#endif
408static void (*boot_DynaLoader)_((pTHX_ CV*));
Bram Moolenaare06c1882010-07-21 22:05:20 +0200409
Bram Moolenaar071d4272004-06-13 20:20:40 +0000410/*
411 * Table of name to function pointer of perl.
412 */
Bram Moolenaar071d4272004-06-13 20:20:40 +0000413static struct {
414 char* name;
415 PERL_PROC* ptr;
416} perl_funcname_table[] = {
417 {"perl_alloc", (PERL_PROC*)&perl_alloc},
418 {"perl_construct", (PERL_PROC*)&perl_construct},
419 {"perl_destruct", (PERL_PROC*)&perl_destruct},
420 {"perl_free", (PERL_PROC*)&perl_free},
421 {"perl_run", (PERL_PROC*)&perl_run},
422 {"perl_parse", (PERL_PROC*)&perl_parse},
423 {"Perl_get_context", (PERL_PROC*)&Perl_get_context},
424 {"Perl_croak", (PERL_PROC*)&Perl_croak},
Bram Moolenaar58cb0892010-03-02 15:14:33 +0100425#ifdef PERL5101_OR_LATER
Bram Moolenaar3a0573a2010-02-17 16:40:58 +0100426 {"Perl_croak_xs_usage", (PERL_PROC*)&Perl_croak_xs_usage},
427#endif
Bram Moolenaard8619992014-03-12 17:08:05 +0100428#ifdef PERL_IMPLICIT_CONTEXT
Bram Moolenaar071d4272004-06-13 20:20:40 +0000429 {"Perl_croak_nocontext", (PERL_PROC*)&Perl_croak_nocontext},
Bram Moolenaard8619992014-03-12 17:08:05 +0100430#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000431 {"Perl_dowantarray", (PERL_PROC*)&Perl_dowantarray},
432 {"Perl_free_tmps", (PERL_PROC*)&Perl_free_tmps},
433 {"Perl_gv_stashpv", (PERL_PROC*)&Perl_gv_stashpv},
434 {"Perl_markstack_grow", (PERL_PROC*)&Perl_markstack_grow},
435 {"Perl_mg_find", (PERL_PROC*)&Perl_mg_find},
436 {"Perl_newXS", (PERL_PROC*)&Perl_newXS},
437 {"Perl_newSV", (PERL_PROC*)&Perl_newSV},
438 {"Perl_newSViv", (PERL_PROC*)&Perl_newSViv},
439 {"Perl_newSVpv", (PERL_PROC*)&Perl_newSVpv},
440 {"Perl_call_argv", (PERL_PROC*)&Perl_call_argv},
441 {"Perl_call_pv", (PERL_PROC*)&Perl_call_pv},
442 {"Perl_eval_sv", (PERL_PROC*)&Perl_eval_sv},
443 {"Perl_get_sv", (PERL_PROC*)&Perl_get_sv},
444 {"Perl_eval_pv", (PERL_PROC*)&Perl_eval_pv},
445 {"Perl_call_method", (PERL_PROC*)&Perl_call_method},
446 {"Perl_pop_scope", (PERL_PROC*)&Perl_pop_scope},
447 {"Perl_push_scope", (PERL_PROC*)&Perl_push_scope},
448 {"Perl_save_int", (PERL_PROC*)&Perl_save_int},
Bram Moolenaar0e6c5ef2014-06-12 16:03:28 +0200449#if (PERL_REVISION == 5) && (PERL_VERSION >= 20)
450 {"Perl_save_strlen", (PERL_PROC*)&Perl_save_strlen},
451#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000452 {"Perl_stack_grow", (PERL_PROC*)&Perl_stack_grow},
453 {"Perl_set_context", (PERL_PROC*)&Perl_set_context},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200454#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
455 {"Perl_sv_2bool_flags", (PERL_PROC*)&Perl_sv_2bool_flags},
456 {"Perl_xs_apiversion_bootcheck",(PERL_PROC*)&Perl_xs_apiversion_bootcheck},
457#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000458 {"Perl_sv_2bool", (PERL_PROC*)&Perl_sv_2bool},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200459#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000460 {"Perl_sv_2iv", (PERL_PROC*)&Perl_sv_2iv},
461 {"Perl_sv_2mortal", (PERL_PROC*)&Perl_sv_2mortal},
462#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
463 {"Perl_sv_2pv_flags", (PERL_PROC*)&Perl_sv_2pv_flags},
464 {"Perl_sv_2pv_nolen", (PERL_PROC*)&Perl_sv_2pv_nolen},
465#else
466 {"Perl_sv_2pv", (PERL_PROC*)&Perl_sv_2pv},
467#endif
Bram Moolenaar700d1d72007-09-13 13:20:16 +0000468#ifdef PERL589_OR_LATER
469 {"Perl_sv_2iv_flags", (PERL_PROC*)&Perl_sv_2iv_flags},
470 {"Perl_newXS_flags", (PERL_PROC*)&Perl_newXS_flags},
471#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000472 {"Perl_sv_bless", (PERL_PROC*)&Perl_sv_bless},
473#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
474 {"Perl_sv_catpvn_flags", (PERL_PROC*)&Perl_sv_catpvn_flags},
475#else
476 {"Perl_sv_catpvn", (PERL_PROC*)&Perl_sv_catpvn},
477#endif
478 {"Perl_sv_free", (PERL_PROC*)&Perl_sv_free},
479 {"Perl_sv_isa", (PERL_PROC*)&Perl_sv_isa},
480 {"Perl_sv_magic", (PERL_PROC*)&Perl_sv_magic},
481 {"Perl_sv_setiv", (PERL_PROC*)&Perl_sv_setiv},
482 {"Perl_sv_setpv", (PERL_PROC*)&Perl_sv_setpv},
483 {"Perl_sv_setpvn", (PERL_PROC*)&Perl_sv_setpvn},
484#if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
485 {"Perl_sv_setsv_flags", (PERL_PROC*)&Perl_sv_setsv_flags},
486#else
487 {"Perl_sv_setsv", (PERL_PROC*)&Perl_sv_setsv},
488#endif
489 {"Perl_sv_upgrade", (PERL_PROC*)&Perl_sv_upgrade},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000490#if (PERL_REVISION == 5) && (PERL_VERSION < 10)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000491 {"Perl_Tstack_sp_ptr", (PERL_PROC*)&Perl_Tstack_sp_ptr},
492 {"Perl_Top_ptr", (PERL_PROC*)&Perl_Top_ptr},
493 {"Perl_Tstack_base_ptr", (PERL_PROC*)&Perl_Tstack_base_ptr},
494 {"Perl_Tstack_max_ptr", (PERL_PROC*)&Perl_Tstack_max_ptr},
495 {"Perl_Ttmps_ix_ptr", (PERL_PROC*)&Perl_Ttmps_ix_ptr},
496 {"Perl_Ttmps_floor_ptr", (PERL_PROC*)&Perl_Ttmps_floor_ptr},
497 {"Perl_Tmarkstack_ptr_ptr", (PERL_PROC*)&Perl_Tmarkstack_ptr_ptr},
498 {"Perl_Tmarkstack_max_ptr", (PERL_PROC*)&Perl_Tmarkstack_max_ptr},
499 {"Perl_TSv_ptr", (PERL_PROC*)&Perl_TSv_ptr},
500 {"Perl_TXpv_ptr", (PERL_PROC*)&Perl_TXpv_ptr},
501 {"Perl_Tna_ptr", (PERL_PROC*)&Perl_Tna_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000502#else
Bram Moolenaarccf22172008-09-01 15:56:45 +0000503 {"Perl_sv_free2", (PERL_PROC*)&Perl_sv_free2},
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000504 {"Perl_sys_init", (PERL_PROC*)&Perl_sys_init},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000505 {"Perl_sys_term", (PERL_PROC*)&Perl_sys_term},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200506 {"Perl_call_list", (PERL_PROC*)&Perl_call_list},
507# if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
508# else
Bram Moolenaarc236c162008-07-13 17:41:49 +0000509 {"Perl_ISv_ptr", (PERL_PROC*)&Perl_ISv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000510 {"Perl_Istack_max_ptr", (PERL_PROC*)&Perl_Istack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200511 {"Perl_Istack_base_ptr", (PERL_PROC*)&Perl_Istack_base_ptr},
512 {"Perl_IXpv_ptr", (PERL_PROC*)&Perl_IXpv_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000513 {"Perl_Itmps_ix_ptr", (PERL_PROC*)&Perl_Itmps_ix_ptr},
514 {"Perl_Itmps_floor_ptr", (PERL_PROC*)&Perl_Itmps_floor_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200515 {"Perl_Ina_ptr", (PERL_PROC*)&Perl_Ina_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000516 {"Perl_Imarkstack_ptr_ptr", (PERL_PROC*)&Perl_Imarkstack_ptr_ptr},
517 {"Perl_Imarkstack_max_ptr", (PERL_PROC*)&Perl_Imarkstack_max_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200518 {"Perl_Istack_sp_ptr", (PERL_PROC*)&Perl_Istack_sp_ptr},
519 {"Perl_Iop_ptr", (PERL_PROC*)&Perl_Iop_ptr},
Bram Moolenaarc236c162008-07-13 17:41:49 +0000520 {"Perl_Iscopestack_ix_ptr", (PERL_PROC*)&Perl_Iscopestack_ix_ptr},
521 {"Perl_Iunitcheckav_ptr", (PERL_PROC*)&Perl_Iunitcheckav_ptr},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200522# endif
Bram Moolenaarc236c162008-07-13 17:41:49 +0000523#endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200524#if (PERL_REVISION == 5) && (PERL_VERSION >= 14)
Bram Moolenaard8619992014-03-12 17:08:05 +0100525# ifdef USE_ITHREADS
Bram Moolenaar01c10522012-09-21 12:50:51 +0200526 {"PL_thr_key", (PERL_PROC*)&dll_PL_thr_key},
Bram Moolenaard8619992014-03-12 17:08:05 +0100527# endif
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200528#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000529 {"Perl_Idefgv_ptr", (PERL_PROC*)&Perl_Idefgv_ptr},
530 {"Perl_Ierrgv_ptr", (PERL_PROC*)&Perl_Ierrgv_ptr},
531 {"Perl_Isv_yes_ptr", (PERL_PROC*)&Perl_Isv_yes_ptr},
Bram Moolenaare06c1882010-07-21 22:05:20 +0200532 {"Perl_Gthr_key_ptr", (PERL_PROC*)&Perl_Gthr_key_ptr},
Bram Moolenaar6dfff542011-09-07 18:47:23 +0200533#endif
534 {"boot_DynaLoader", (PERL_PROC*)&boot_DynaLoader},
Bram Moolenaar071d4272004-06-13 20:20:40 +0000535 {"", NULL},
536};
537
Bram Moolenaar6b107212013-12-11 15:06:40 +0100538/* Work around for perl-5.18.
539 * The definitions of S_SvREFCNT_inc and S_SvREFCNT_dec are needed, so include
540 * "perl\lib\CORE\inline.h", after Perl_sv_free2 is defined.
541 * The linker won't complain about undefined __impl_Perl_sv_free2. */
542#if (PERL_REVISION == 5) && (PERL_VERSION >= 18)
543# include <inline.h>
544#endif
545
Bram Moolenaar071d4272004-06-13 20:20:40 +0000546/*
547 * Make all runtime-links of perl.
548 *
Bram Moolenaar364ab2f2013-08-02 20:05:32 +0200549 * 1. Get module handle using dlopen() or vimLoadLib().
Bram Moolenaar071d4272004-06-13 20:20:40 +0000550 * 2. Get pointer to perl function by GetProcAddress.
551 * 3. Repeat 2, until get all functions will be used.
552 *
553 * Parameter 'libname' provides name of DLL.
554 * Return OK or FAIL.
555 */
556 static int
557perl_runtime_link_init(char *libname, int verbose)
558{
559 int i;
560
561 if (hPerlLib != NULL)
562 return OK;
Bram Moolenaare06c1882010-07-21 22:05:20 +0200563 if ((hPerlLib = load_dll(libname)) == NULL)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000564 {
565 if (verbose)
566 EMSG2(_("E370: Could not load library %s"), libname);
567 return FAIL;
568 }
569 for (i = 0; perl_funcname_table[i].ptr; ++i)
570 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200571 if (!(*perl_funcname_table[i].ptr = symbol_from_dll(hPerlLib,
Bram Moolenaar071d4272004-06-13 20:20:40 +0000572 perl_funcname_table[i].name)))
573 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200574 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000575 hPerlLib = NULL;
576 if (verbose)
577 EMSG2(_(e_loadfunc), perl_funcname_table[i].name);
578 return FAIL;
579 }
580 }
581 return OK;
582}
583
584/*
585 * If runtime-link-perl(DLL) was loaded successfully, return TRUE.
586 * There were no DLL loaded, return FALSE.
587 */
588 int
589perl_enabled(verbose)
590 int verbose;
591{
592 return perl_runtime_link_init(DYNAMIC_PERL_DLL, verbose) == OK;
593}
594#endif /* DYNAMIC_PERL */
595
596/*
597 * perl_init(): initialize perl interpreter
598 * We have to call perl_parse to initialize some structures,
599 * there's nothing to actually parse.
600 */
601 static void
602perl_init()
603{
Bram Moolenaarc236c162008-07-13 17:41:49 +0000604 char *bootargs[] = { "VI", NULL };
605 int argc = 3;
606 static char *argv[] = { "", "-e", "" };
Bram Moolenaar071d4272004-06-13 20:20:40 +0000607
Bram Moolenaarc236c162008-07-13 17:41:49 +0000608#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
Bram Moolenaar4eac38f2008-12-03 12:18:55 +0000609 Perl_sys_init(&argc, (char***)&argv);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000610#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000611 perl_interp = perl_alloc();
612 perl_construct(perl_interp);
Bram Moolenaarc236c162008-07-13 17:41:49 +0000613 perl_parse(perl_interp, xs_init, argc, argv, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000614 perl_call_argv("VIM::bootstrap", (long)G_DISCARD, bootargs);
615 VIM_init();
616#ifdef USE_SFIO
617 sfdisc(PerlIO_stdout(), sfdcnewvim());
618 sfdisc(PerlIO_stderr(), sfdcnewvim());
619 sfsetbuf(PerlIO_stdout(), NULL, 0);
620 sfsetbuf(PerlIO_stderr(), NULL, 0);
621#endif
622}
623
624/*
625 * perl_end(): clean up after ourselves
626 */
627 void
628perl_end()
629{
630 if (perl_interp)
631 {
632 perl_run(perl_interp);
633 perl_destruct(perl_interp);
634 perl_free(perl_interp);
635 perl_interp = NULL;
Bram Moolenaarc236c162008-07-13 17:41:49 +0000636#if (PERL_REVISION == 5) && (PERL_VERSION >= 10)
637 Perl_sys_term();
638#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000639 }
640#ifdef DYNAMIC_PERL
641 if (hPerlLib)
642 {
Bram Moolenaare06c1882010-07-21 22:05:20 +0200643 close_dll(hPerlLib);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000644 hPerlLib = NULL;
645 }
646#endif
647}
648
649/*
650 * msg_split(): send a message to the message handling routines
651 * split at '\n' first though.
652 */
653 void
654msg_split(s, attr)
655 char_u *s;
656 int attr; /* highlighting attributes */
657{
658 char *next;
659 char *token = (char *)s;
660
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000661 while ((next = strchr(token, '\n')) && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000662 {
663 *next++ = '\0'; /* replace \n with \0 */
664 msg_attr((char_u *)token, attr);
665 token = next;
666 }
Bram Moolenaaraa8494a2007-10-09 08:47:27 +0000667 if (*token && !got_int)
Bram Moolenaar071d4272004-06-13 20:20:40 +0000668 msg_attr((char_u *)token, attr);
669}
670
671#ifndef FEAT_EVAL
672/*
673 * This stub is needed because an "#ifdef FEAT_EVAL" around Eval() doesn't
674 * work properly.
675 */
676 char_u *
Bram Moolenaar362e1a32006-03-06 23:29:24 +0000677eval_to_string(arg, nextcmd, dolist)
Bram Moolenaarfeeaa682013-02-14 22:19:51 +0100678 char_u *arg UNUSED;
679 char_u **nextcmd UNUSED;
680 int dolist UNUSED;
Bram Moolenaar071d4272004-06-13 20:20:40 +0000681{
682 return NULL;
683}
684#endif
685
686/*
687 * Create a new reference to an SV pointing to the SCR structure
Bram Moolenaare344bea2005-09-01 20:46:49 +0000688 * The b_perl_private/w_perl_private part of the SCR structure points to the
689 * SV, so there can only be one such SV for a particular SCR structure. When
690 * the last reference has gone (DESTROY is called),
691 * b_perl_private/w_perl_private is reset; When the screen goes away before
Bram Moolenaar071d4272004-06-13 20:20:40 +0000692 * all references are gone, the value of the SV is reset;
693 * any subsequent use of any of those reference will produce
694 * a warning. (see typemap)
695 */
Bram Moolenaare344bea2005-09-01 20:46:49 +0000696
697 static SV *
698newWINrv(rv, ptr)
699 SV *rv;
700 win_T *ptr;
701{
702 sv_upgrade(rv, SVt_RV);
703 if (ptr->w_perl_private == NULL)
704 {
705 ptr->w_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100706 sv_setiv(ptr->w_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000707 }
708 else
709 SvREFCNT_inc(ptr->w_perl_private);
710 SvRV(rv) = ptr->w_perl_private;
711 SvROK_on(rv);
712 return sv_bless(rv, gv_stashpv("VIWIN", TRUE));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000713}
714
Bram Moolenaare344bea2005-09-01 20:46:49 +0000715 static SV *
716newBUFrv(rv, ptr)
717 SV *rv;
718 buf_T *ptr;
719{
720 sv_upgrade(rv, SVt_RV);
721 if (ptr->b_perl_private == NULL)
722 {
723 ptr->b_perl_private = newSV(0);
Bram Moolenaarbe747342012-02-12 00:31:52 +0100724 sv_setiv(ptr->b_perl_private, PTR2IV(ptr));
Bram Moolenaare344bea2005-09-01 20:46:49 +0000725 }
726 else
727 SvREFCNT_inc(ptr->b_perl_private);
728 SvRV(rv) = ptr->b_perl_private;
729 SvROK_on(rv);
730 return sv_bless(rv, gv_stashpv("VIBUF", TRUE));
731}
Bram Moolenaar071d4272004-06-13 20:20:40 +0000732
733/*
734 * perl_win_free
Bram Moolenaar84a05ac2013-05-06 04:24:17 +0200735 * Remove all references to the window to be destroyed
Bram Moolenaar071d4272004-06-13 20:20:40 +0000736 */
737 void
738perl_win_free(wp)
739 win_T *wp;
740{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000741 if (wp->w_perl_private)
742 sv_setiv((SV *)wp->w_perl_private, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000743 return;
744}
745
746 void
747perl_buf_free(bp)
748 buf_T *bp;
749{
Bram Moolenaare344bea2005-09-01 20:46:49 +0000750 if (bp->b_perl_private)
751 sv_setiv((SV *)bp->b_perl_private, 0);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000752 return;
753}
754
755#ifndef PROTO
756# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
757I32 cur_val(pTHX_ IV iv, SV *sv);
758# else
759I32 cur_val(IV iv, SV *sv);
760#endif
761
762/*
763 * Handler for the magic variables $main::curwin and $main::curbuf.
764 * The handler is put into the magic vtbl for these variables.
765 * (This is effectively a C-level equivalent of a tied variable).
766 * There is no "set" function as the variables are read-only.
767 */
768# if (PERL_REVISION == 5) && (PERL_VERSION >= 8)
769I32 cur_val(pTHX_ IV iv, SV *sv)
770# else
771I32 cur_val(IV iv, SV *sv)
772# endif
773{
774 SV *rv;
775 if (iv == 0)
776 rv = newWINrv(newSV(0), curwin);
777 else
778 rv = newBUFrv(newSV(0), curbuf);
779 sv_setsv(sv, rv);
780 return 0;
781}
782#endif /* !PROTO */
783
784struct ufuncs cw_funcs = { cur_val, 0, 0 };
785struct ufuncs cb_funcs = { cur_val, 0, 1 };
786
787/*
788 * VIM_init(): Vim-specific initialisation.
789 * Make the magical main::curwin and main::curbuf variables
790 */
791 static void
792VIM_init()
793{
794 static char cw[] = "main::curwin";
795 static char cb[] = "main::curbuf";
796 SV *sv;
797
798 sv = perl_get_sv(cw, TRUE);
799 sv_magic(sv, NULL, 'U', (char *)&cw_funcs, sizeof(cw_funcs));
800 SvREADONLY_on(sv);
801
802 sv = perl_get_sv(cb, TRUE);
803 sv_magic(sv, NULL, 'U', (char *)&cb_funcs, sizeof(cb_funcs));
804 SvREADONLY_on(sv);
805
806 /*
807 * Setup the Safe compartment.
808 * It shouldn't be a fatal error if the Safe module is missing.
809 * XXX: Only shares the 'Msg' routine (which has to be called
810 * like 'Msg(...)').
811 */
812 (void)perl_eval_pv( "if ( eval( 'require Safe' ) ) { $VIM::safe = Safe->new(); $VIM::safe->share_from( 'VIM', ['Msg'] ); }", G_DISCARD | G_VOID );
813
814}
815
816#ifdef DYNAMIC_PERL
817static char *e_noperl = N_("Sorry, this command is disabled: the Perl library could not be loaded.");
818#endif
819
820/*
821 * ":perl"
822 */
823 void
824ex_perl(eap)
825 exarg_T *eap;
826{
827 char *err;
828 char *script;
829 STRLEN length;
830 SV *sv;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200831#ifdef HAVE_SANDBOX
Bram Moolenaar071d4272004-06-13 20:20:40 +0000832 SV *safe;
Bram Moolenaar9d6650f2010-06-06 23:04:47 +0200833#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000834
835 script = (char *)script_get(eap, eap->arg);
836 if (eap->skip)
837 {
838 vim_free(script);
839 return;
840 }
841
842 if (perl_interp == NULL)
843 {
844#ifdef DYNAMIC_PERL
845 if (!perl_enabled(TRUE))
846 {
847 EMSG(_(e_noperl));
848 vim_free(script);
849 return;
850 }
851#endif
852 perl_init();
853 }
854
855 {
856 dSP;
857 ENTER;
858 SAVETMPS;
859
860 if (script == NULL)
861 sv = newSVpv((char *)eap->arg, 0);
862 else
863 {
864 sv = newSVpv(script, 0);
865 vim_free(script);
866 }
867
868#ifdef HAVE_SANDBOX
869 if (sandbox)
870 {
Bram Moolenaara1711622011-07-27 14:15:46 +0200871 safe = perl_get_sv("VIM::safe", FALSE);
Bram Moolenaar3f947ea2009-07-14 14:04:54 +0000872# ifndef MAKE_TEST /* avoid a warning for unreachable code */
Bram Moolenaar954e8c52009-11-11 13:45:33 +0000873 if (safe == NULL || !SvTRUE(safe))
Bram Moolenaar071d4272004-06-13 20:20:40 +0000874 EMSG(_("E299: Perl evaluation forbidden in sandbox without the Safe module"));
875 else
Bram Moolenaar3f947ea2009-07-14 14:04:54 +0000876# endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000877 {
878 PUSHMARK(SP);
879 XPUSHs(safe);
880 XPUSHs(sv);
881 PUTBACK;
882 perl_call_method("reval", G_DISCARD);
883 }
884 }
885 else
886#endif
887 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
888
889 SvREFCNT_dec(sv);
890
Bram Moolenaarc271c482012-08-08 13:17:31 +0200891#ifdef AVOID_PL_ERRGV
892 err = SvPV(perl_get_sv("@", GV_ADD), length);
893#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000894 err = SvPV(GvSV(PL_errgv), length);
Bram Moolenaarc271c482012-08-08 13:17:31 +0200895#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000896
897 FREETMPS;
898 LEAVE;
899
900 if (!length)
901 return;
902
903 msg_split((char_u *)err, highlight_attr[HLF_E]);
904 return;
905 }
906}
907
908 static int
909replace_line(line, end)
910 linenr_T *line, *end;
911{
912 char *str;
913
914 if (SvOK(GvSV(PL_defgv)))
915 {
916 str = SvPV(GvSV(PL_defgv), PL_na);
917 ml_replace(*line, (char_u *)str, 1);
918 changed_bytes(*line, 0);
919 }
920 else
921 {
922 ml_delete(*line, FALSE);
923 deleted_lines_mark(*line, 1L);
924 --(*end);
925 --(*line);
926 }
927 return OK;
928}
929
930/*
931 * ":perldo".
932 */
933 void
934ex_perldo(eap)
935 exarg_T *eap;
936{
937 STRLEN length;
938 SV *sv;
939 char *str;
940 linenr_T i;
941
942 if (bufempty())
943 return;
944
945 if (perl_interp == NULL)
946 {
947#ifdef DYNAMIC_PERL
948 if (!perl_enabled(TRUE))
949 {
950 EMSG(_(e_noperl));
951 return;
952 }
953#endif
954 perl_init();
955 }
956 {
957 dSP;
958 length = strlen((char *)eap->arg);
Bram Moolenaar9d75c832005-01-25 21:57:23 +0000959 sv = newSV(length + sizeof("sub VIM::perldo {") - 1 + 1);
960 sv_setpvn(sv, "sub VIM::perldo {", sizeof("sub VIM::perldo {") - 1);
Bram Moolenaar071d4272004-06-13 20:20:40 +0000961 sv_catpvn(sv, (char *)eap->arg, length);
962 sv_catpvn(sv, "}", 1);
963 perl_eval_sv(sv, G_DISCARD | G_NOARGS);
964 SvREFCNT_dec(sv);
Bram Moolenaarc271c482012-08-08 13:17:31 +0200965#ifdef AVOID_PL_ERRGV
966 str = SvPV(perl_get_sv("@", GV_ADD), length);
967#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000968 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaarc271c482012-08-08 13:17:31 +0200969#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000970 if (length)
971 goto err;
972
973 if (u_save(eap->line1 - 1, eap->line2 + 1) != OK)
974 return;
975
976 ENTER;
977 SAVETMPS;
978 for (i = eap->line1; i <= eap->line2; i++)
979 {
Bram Moolenaar9d75c832005-01-25 21:57:23 +0000980 sv_setpv(GvSV(PL_defgv), (char *)ml_get(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +0000981 PUSHMARK(sp);
982 perl_call_pv("VIM::perldo", G_SCALAR | G_EVAL);
Bram Moolenaarc271c482012-08-08 13:17:31 +0200983#ifdef AVOID_PL_ERRGV
984 str = SvPV(perl_get_sv("@", GV_ADD), length);
985#else
Bram Moolenaar071d4272004-06-13 20:20:40 +0000986 str = SvPV(GvSV(PL_errgv), length);
Bram Moolenaarc271c482012-08-08 13:17:31 +0200987#endif
Bram Moolenaar071d4272004-06-13 20:20:40 +0000988 if (length)
989 break;
990 SPAGAIN;
991 if (SvTRUEx(POPs))
992 {
993 if (replace_line(&i, &eap->line2) != OK)
994 {
995 PUTBACK;
996 break;
997 }
998 }
999 PUTBACK;
1000 }
1001 FREETMPS;
1002 LEAVE;
1003 check_cursor();
1004 update_screen(NOT_VALID);
1005 if (!length)
1006 return;
1007
1008err:
1009 msg_split((char_u *)str, highlight_attr[HLF_E]);
1010 return;
1011 }
1012}
1013
Bram Moolenaar01dd60c2008-07-24 14:24:48 +00001014#ifndef FEAT_WINDOWS
1015int win_valid(win_T *w) { return TRUE; }
1016int win_count() { return 1; }
1017win_T *win_find_nr(int n) { return curwin; }
1018#endif
1019
Bram Moolenaar071d4272004-06-13 20:20:40 +00001020XS(boot_VIM);
1021
1022 static void
1023xs_init(pTHX)
1024{
1025 char *file = __FILE__;
1026
1027 /* DynaLoader is a special case */
1028 newXS("DynaLoader::boot_DynaLoader", boot_DynaLoader, file);
1029 newXS("VIM::bootstrap", boot_VIM, file);
1030}
1031
1032typedef win_T * VIWIN;
1033typedef buf_T * VIBUF;
1034
1035MODULE = VIM PACKAGE = VIM
1036
1037void
1038Msg(text, hl=NULL)
1039 char *text;
1040 char *hl;
1041
1042 PREINIT:
1043 int attr;
1044 int id;
1045
1046 PPCODE:
1047 if (text != NULL)
1048 {
1049 attr = 0;
1050 if (hl != NULL)
1051 {
1052 id = syn_name2id((char_u *)hl);
1053 if (id != 0)
1054 attr = syn_id2attr(id);
1055 }
1056 msg_split((char_u *)text, attr);
1057 }
1058
1059void
1060SetOption(line)
1061 char *line;
1062
1063 PPCODE:
1064 if (line != NULL)
1065 do_set((char_u *)line, 0);
1066 update_screen(NOT_VALID);
1067
1068void
1069DoCommand(line)
1070 char *line;
1071
1072 PPCODE:
1073 if (line != NULL)
1074 do_cmdline_cmd((char_u *)line);
1075
1076void
1077Eval(str)
1078 char *str;
1079
1080 PREINIT:
1081 char_u *value;
1082 PPCODE:
Bram Moolenaar362e1a32006-03-06 23:29:24 +00001083 value = eval_to_string((char_u *)str, (char_u **)0, TRUE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001084 if (value == NULL)
1085 {
1086 XPUSHs(sv_2mortal(newSViv(0)));
1087 XPUSHs(sv_2mortal(newSVpv("", 0)));
1088 }
1089 else
1090 {
1091 XPUSHs(sv_2mortal(newSViv(1)));
1092 XPUSHs(sv_2mortal(newSVpv((char *)value, 0)));
1093 vim_free(value);
1094 }
1095
1096void
1097Buffers(...)
1098
1099 PREINIT:
1100 buf_T *vimbuf;
1101 int i, b;
1102
1103 PPCODE:
1104 if (items == 0)
1105 {
1106 if (GIMME == G_SCALAR)
1107 {
1108 i = 0;
1109 for (vimbuf = firstbuf; vimbuf; vimbuf = vimbuf->b_next)
1110 ++i;
1111
1112 XPUSHs(sv_2mortal(newSViv(i)));
1113 }
1114 else
1115 {
1116 for (vimbuf = firstbuf; vimbuf; vimbuf = vimbuf->b_next)
1117 XPUSHs(newBUFrv(newSV(0), vimbuf));
1118 }
1119 }
1120 else
1121 {
1122 for (i = 0; i < items; i++)
1123 {
1124 SV *sv = ST(i);
1125 if (SvIOK(sv))
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001126 b = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001127 else
1128 {
1129 char_u *pat;
1130 STRLEN len;
1131
1132 pat = (char_u *)SvPV(sv, len);
1133 ++emsg_off;
Bram Moolenaar0c279bb2013-03-19 14:25:54 +01001134 b = buflist_findpat(pat, pat+len, FALSE, FALSE, FALSE);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001135 --emsg_off;
1136 }
1137
1138 if (b >= 0)
1139 {
1140 vimbuf = buflist_findnr(b);
1141 if (vimbuf)
1142 XPUSHs(newBUFrv(newSV(0), vimbuf));
1143 }
1144 }
1145 }
1146
1147void
1148Windows(...)
1149
1150 PREINIT:
1151 win_T *vimwin;
1152 int i, w;
1153
1154 PPCODE:
1155 if (items == 0)
1156 {
1157 if (GIMME == G_SCALAR)
1158 XPUSHs(sv_2mortal(newSViv(win_count())));
1159 else
1160 {
1161 for (vimwin = firstwin; vimwin != NULL; vimwin = W_NEXT(vimwin))
1162 XPUSHs(newWINrv(newSV(0), vimwin));
1163 }
1164 }
1165 else
1166 {
1167 for (i = 0; i < items; i++)
1168 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001169 w = (int) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001170 vimwin = win_find_nr(w);
1171 if (vimwin)
1172 XPUSHs(newWINrv(newSV(0), vimwin));
1173 }
1174 }
1175
1176MODULE = VIM PACKAGE = VIWIN
1177
1178void
1179DESTROY(win)
1180 VIWIN win
1181
1182 CODE:
1183 if (win_valid(win))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001184 win->w_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001185
1186SV *
1187Buffer(win)
1188 VIWIN win
1189
1190 CODE:
1191 if (!win_valid(win))
1192 win = curwin;
1193 RETVAL = newBUFrv(newSV(0), win->w_buffer);
1194 OUTPUT:
1195 RETVAL
1196
1197void
1198SetHeight(win, height)
1199 VIWIN win
1200 int height;
1201
1202 PREINIT:
1203 win_T *savewin;
1204
1205 PPCODE:
1206 if (!win_valid(win))
1207 win = curwin;
1208 savewin = curwin;
1209 curwin = win;
1210 win_setheight(height);
1211 curwin = savewin;
1212
1213void
1214Cursor(win, ...)
1215 VIWIN win
1216
1217 PPCODE:
Bram Moolenaara1711622011-07-27 14:15:46 +02001218 if (items == 1)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001219 {
1220 EXTEND(sp, 2);
1221 if (!win_valid(win))
1222 win = curwin;
1223 PUSHs(sv_2mortal(newSViv(win->w_cursor.lnum)));
1224 PUSHs(sv_2mortal(newSViv(win->w_cursor.col)));
1225 }
Bram Moolenaara1711622011-07-27 14:15:46 +02001226 else if (items == 3)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001227 {
1228 int lnum, col;
1229
1230 if (!win_valid(win))
1231 win = curwin;
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001232 lnum = (int) SvIV(ST(1));
1233 col = (int) SvIV(ST(2));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001234 win->w_cursor.lnum = lnum;
1235 win->w_cursor.col = col;
1236 check_cursor(); /* put cursor on an existing line */
1237 update_screen(NOT_VALID);
1238 }
1239
1240MODULE = VIM PACKAGE = VIBUF
1241
1242void
1243DESTROY(vimbuf)
1244 VIBUF vimbuf;
1245
1246 CODE:
1247 if (buf_valid(vimbuf))
Bram Moolenaare344bea2005-09-01 20:46:49 +00001248 vimbuf->b_perl_private = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001249
1250void
1251Name(vimbuf)
1252 VIBUF vimbuf;
1253
1254 PPCODE:
1255 if (!buf_valid(vimbuf))
1256 vimbuf = curbuf;
1257 /* No file name returns an empty string */
1258 if (vimbuf->b_fname == NULL)
1259 XPUSHs(sv_2mortal(newSVpv("", 0)));
1260 else
1261 XPUSHs(sv_2mortal(newSVpv((char *)vimbuf->b_fname, 0)));
1262
1263void
1264Number(vimbuf)
1265 VIBUF vimbuf;
1266
1267 PPCODE:
1268 if (!buf_valid(vimbuf))
1269 vimbuf = curbuf;
1270 XPUSHs(sv_2mortal(newSViv(vimbuf->b_fnum)));
1271
1272void
1273Count(vimbuf)
1274 VIBUF vimbuf;
1275
1276 PPCODE:
1277 if (!buf_valid(vimbuf))
1278 vimbuf = curbuf;
1279 XPUSHs(sv_2mortal(newSViv(vimbuf->b_ml.ml_line_count)));
1280
1281void
1282Get(vimbuf, ...)
1283 VIBUF vimbuf;
1284
1285 PREINIT:
1286 char_u *line;
1287 int i;
1288 long lnum;
1289 PPCODE:
1290 if (buf_valid(vimbuf))
1291 {
1292 for (i = 1; i < items; i++)
1293 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001294 lnum = (long) SvIV(ST(i));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001295 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1296 {
1297 line = ml_get_buf(vimbuf, lnum, FALSE);
1298 XPUSHs(sv_2mortal(newSVpv((char *)line, 0)));
1299 }
1300 }
1301 }
1302
1303void
1304Set(vimbuf, ...)
1305 VIBUF vimbuf;
1306
1307 PREINIT:
1308 int i;
1309 long lnum;
1310 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001311 PPCODE:
1312 if (buf_valid(vimbuf))
1313 {
1314 if (items < 3)
1315 croak("Usage: VIBUF::Set(vimbuf, lnum, @lines)");
1316
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001317 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001318 for(i = 2; i < items; i++, lnum++)
1319 {
1320 line = SvPV(ST(i),PL_na);
1321 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1322 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001323 aco_save_T aco;
1324
1325 /* set curwin/curbuf for "vimbuf" and save some things */
1326 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001327
Bram Moolenaar071d4272004-06-13 20:20:40 +00001328 if (u_savesub(lnum) == OK)
1329 {
1330 ml_replace(lnum, (char_u *)line, TRUE);
1331 changed_bytes(lnum, 0);
1332 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001333
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001334 /* restore curwin/curbuf and a few other things */
1335 aucmd_restbuf(&aco);
1336 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaar071d4272004-06-13 20:20:40 +00001337 }
1338 }
1339 }
1340
1341void
1342Delete(vimbuf, ...)
1343 VIBUF vimbuf;
1344
1345 PREINIT:
1346 long i, lnum = 0, count = 0;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001347 PPCODE:
1348 if (buf_valid(vimbuf))
1349 {
1350 if (items == 2)
1351 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001352 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001353 count = 1;
1354 }
1355 else if (items == 3)
1356 {
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001357 lnum = (long) SvIV(ST(1));
1358 count = (long) 1 + SvIV(ST(2)) - lnum;
Bram Moolenaara1711622011-07-27 14:15:46 +02001359 if (count == 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001360 count = 1;
Bram Moolenaara1711622011-07-27 14:15:46 +02001361 if (count < 0)
Bram Moolenaar071d4272004-06-13 20:20:40 +00001362 {
1363 lnum -= count;
1364 count = -count;
1365 }
1366 }
1367 if (items >= 2)
1368 {
1369 for (i = 0; i < count; i++)
1370 {
1371 if (lnum > 0 && lnum <= vimbuf->b_ml.ml_line_count)
1372 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001373 aco_save_T aco;
1374
1375 /* set curwin/curbuf for "vimbuf" and save some things */
1376 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001377
Bram Moolenaar071d4272004-06-13 20:20:40 +00001378 if (u_savedel(lnum, 1) == OK)
1379 {
1380 ml_delete(lnum, 0);
Bram Moolenaarcdcaa582009-07-09 18:06:49 +00001381 check_cursor();
Bram Moolenaar071d4272004-06-13 20:20:40 +00001382 deleted_lines_mark(lnum, 1L);
Bram Moolenaar071d4272004-06-13 20:20:40 +00001383 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001384
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001385 /* restore curwin/curbuf and a few other things */
1386 aucmd_restbuf(&aco);
1387 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001388
Bram Moolenaar071d4272004-06-13 20:20:40 +00001389 update_curbuf(VALID);
1390 }
1391 }
1392 }
1393 }
1394
1395void
1396Append(vimbuf, ...)
1397 VIBUF vimbuf;
1398
1399 PREINIT:
1400 int i;
1401 long lnum;
1402 char *line;
Bram Moolenaar071d4272004-06-13 20:20:40 +00001403 PPCODE:
1404 if (buf_valid(vimbuf))
1405 {
1406 if (items < 3)
1407 croak("Usage: VIBUF::Append(vimbuf, lnum, @lines)");
1408
Bram Moolenaare9d47cd2013-02-06 19:58:43 +01001409 lnum = (long) SvIV(ST(1));
Bram Moolenaar071d4272004-06-13 20:20:40 +00001410 for (i = 2; i < items; i++, lnum++)
1411 {
1412 line = SvPV(ST(i),PL_na);
1413 if (lnum >= 0 && lnum <= vimbuf->b_ml.ml_line_count && line != NULL)
1414 {
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001415 aco_save_T aco;
1416
1417 /* set curwin/curbuf for "vimbuf" and save some things */
1418 aucmd_prepbuf(&aco, vimbuf);
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001419
Bram Moolenaar071d4272004-06-13 20:20:40 +00001420 if (u_inssub(lnum + 1) == OK)
1421 {
1422 ml_append(lnum, (char_u *)line, (colnr_T)0, FALSE);
1423 appended_lines_mark(lnum, 1L);
1424 }
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001425
Bram Moolenaar334a3bf2006-08-08 14:45:44 +00001426 /* restore curwin/curbuf and a few other things */
1427 aucmd_restbuf(&aco);
1428 /* Careful: autocommands may have made "vimbuf" invalid! */
Bram Moolenaarf30e74c2006-08-16 17:35:00 +00001429
Bram Moolenaar071d4272004-06-13 20:20:40 +00001430 update_curbuf(VALID);
1431 }
1432 }
1433 }
1434