4 * Copyright (c) 1992, 1993, 1994
5 * The Regents of the University of California. All rights reserved.
6 * Copyright (c) 1992, 1993, 1994, 1995, 1996
7 * Keith Bostic. All rights reserved.
9 * George V. Neville-Neil. All rights reserved.
11 * Sven Verdoolaege. All rights reserved.
13 * See the LICENSE file for redistribution information.
19 static const char sccsid
[] = "Id: ex_perl.c,v 8.11 2001/06/25 15:19:18 skimo Exp (Berkeley) Date: 2001/06/25 15:19:18";
22 #include <sys/types.h>
23 #include <sys/queue.h>
26 #include <bitstring.h>
34 #include "../common/common.h"
37 * ex_perl -- :[line [,line]] perl [command]
38 * Run a command through the perl interpreter.
40 * ex_perldo -- :[line [,line]] perldo [command]
41 * Run a set of lines through the perl interpreter.
43 * PUBLIC: int ex_perl __P((SCR*, EXCMD *));
46 ex_perl(SCR
*sp
, EXCMD
*cmdp
)
48 #ifdef HAVE_PERL_INTERP
52 /* Skip leading white space. */
54 for (p
= cmdp
->argv
[0]->bp
,
55 len
= cmdp
->argv
[0]->len
; len
> 0; --len
, ++p
)
58 if (cmdp
->argc
== 0 || len
== 0) {
59 ex_emsg(sp
, cmdp
->cmd
->usage
, EXM_USAGE
);
62 return (cmdp
->cmd
== &cmds
[C_PERLCMD
] ?
63 perl_ex_perl(sp
, p
, len
, cmdp
->addr1
.lno
, cmdp
->addr2
.lno
) :
64 perl_ex_perldo(sp
, p
, len
, cmdp
->addr1
.lno
, cmdp
->addr2
.lno
));
66 msgq(sp
, M_ERR
, "306|Vi was not loaded with a Perl interpreter");