1 /* $NetBSD: ex_tcl.c,v 1.3 2014/01/26 21:43:45 christos Exp $ */
3 * Copyright (c) 1992, 1993, 1994
4 * The Regents of the University of California. All rights reserved.
5 * Copyright (c) 1992, 1993, 1994, 1995, 1996
6 * Keith Bostic. All rights reserved.
8 * George V. Neville-Neil. All rights reserved.
10 * See the LICENSE file for redistribution information.
15 #include <sys/cdefs.h>
18 static const char sccsid
[] = "Id: ex_tcl.c,v 8.11 2001/06/25 15:19:21 skimo Exp (Berkeley) Date: 2001/06/25 15:19:21 ";
21 __RCSID("$NetBSD: ex_tcl.c,v 1.3 2014/01/26 21:43:45 christos Exp $");
24 #include <sys/types.h>
25 #include <sys/queue.h>
27 #include <bitstring.h>
34 #include "../common/common.h"
36 #ifdef HAVE_TCL_INTERP
41 * ex_tcl -- :[line [,line]] tcl [command]
42 * Run a command through the tcl interpreter.
44 * PUBLIC: int ex_tcl __P((SCR*, EXCMD *));
47 ex_tcl(SCR
*sp
, EXCMD
*cmdp
)
49 #ifdef HAVE_TCL_INTERP
55 /* Initialize the interpreter. */
57 if (gp
->tcl_interp
== NULL
&& tcl_init(gp
))
60 /* Skip leading white space. */
62 for (p
= cmdp
->argv
[0]->bp
,
63 len
= cmdp
->argv
[0]->len
; len
> 0; --len
, ++p
)
64 if (!ISBLANK((UCHAR_T
)*p
))
66 if (cmdp
->argc
== 0 || len
== 0) {
67 ex_emsg(sp
, cmdp
->cmd
->usage
, EXM_USAGE
);
71 (void)snprintf(buf
, sizeof(buf
),
72 "set viScreenId %d\nset viStartLine %lu\nset viStopLine %lu",
73 sp
->id
, cmdp
->addr1
.lno
, cmdp
->addr2
.lno
);
74 if (Tcl_Eval(gp
->tcl_interp
, buf
) == TCL_OK
&&
75 Tcl_Eval(gp
->tcl_interp
, cmdp
->argv
[0]->bp
) == TCL_OK
)
78 msgq(sp
, M_ERR
, "Tcl: %s", ((Tcl_Interp
*)gp
->tcl_interp
)->result
);
81 msgq(sp
, M_ERR
, "302|Vi was not loaded with a Tcl interpreter");
83 #endif /* HAVE_TCL_INTERP */