1 /* $NetBSD: ex_at.c,v 1.5 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 * See the LICENSE file for redistribution information.
13 #include <sys/cdefs.h>
16 static const char sccsid
[] = "Id: ex_at.c,v 10.16 2001/06/25 15:19:14 skimo Exp (Berkeley) Date: 2001/06/25 15:19:14 ";
19 __RCSID("$NetBSD: ex_at.c,v 1.5 2014/01/26 21:43:45 christos Exp $");
22 #include <sys/types.h>
23 #include <sys/queue.h>
25 #include <bitstring.h>
32 #include "../common/common.h"
35 * ex_at -- :@[@ | buffer]
38 * Execute the contents of the buffer.
40 * PUBLIC: int ex_at __P((SCR *, EXCMD *));
43 ex_at(SCR
*sp
, EXCMD
*cmdp
)
55 * Historically, [@*]<carriage-return> and [@*][@*] executed the most
56 * recently executed buffer in ex mode.
58 name
= FL_ISSET(cmdp
->iflags
, E_C_BUFFER
) ? cmdp
->buffer
: '@';
59 if (name
== '@' || name
== '*') {
60 if (!F_ISSET(sp
, SC_AT_SET
)) {
61 ex_emsg(sp
, NULL
, EXM_NOPREVBUF
);
69 CBNAME(sp
, cbp
, name
);
71 ex_emsg(sp
, (char *)KEY_NAME(sp
, name
), EXM_EMPTYBUF
);
77 * Historically the @ command took a range of lines, and the @ buffer
78 * was executed once per line. The historic vi could be trashed by
79 * this because it didn't notice if the underlying file changed, or,
80 * for that matter, if there were no more lines on which to operate.
81 * For example, take a 10 line file, load "%delete" into a buffer,
82 * and enter :8,10@<buffer>.
84 * The solution is a bit tricky. If the user specifies a range, take
85 * the same approach as for global commands, and discard the command
86 * if exit or switch to a new file/screen. If the user doesn't specify
87 * the range, continue to execute after a file/screen switch, which
88 * means @ buffers are still useful in a multi-screen environment.
90 CALLOC_RET(sp
, ecp
, EXCMD
*, 1, sizeof(EXCMD
));
92 CALLOC_RET(sp
, rp
, RANGE
*, 1, sizeof(RANGE
));
93 rp
->start
= cmdp
->addr1
.lno
;
94 if (F_ISSET(cmdp
, E_ADDR_DEF
)) {
96 FL_SET(ecp
->agv_flags
, AGV_AT_NORANGE
);
98 rp
->stop
= cmdp
->addr2
.lno
;
99 FL_SET(ecp
->agv_flags
, AGV_AT
);
101 TAILQ_INSERT_HEAD(&ecp
->rq
, rp
, q
);
104 * Buffers executed in ex mode or from the colon command line in vi
105 * were ex commands. We can't push it on the terminal queue, since
106 * it has to be executed immediately, and we may be in the middle of
107 * an ex command already. Push the command on the ex command stack.
108 * Build two copies of the command. We need two copies because the
109 * ex parser may step on the command string when it's parsing it.
111 for (len
= 0, tp
= TAILQ_LAST(&cbp
->textq
, _texth
);
112 tp
!= NULL
; tp
= TAILQ_PREV(tp
, _texth
, q
))
115 MALLOC_GOTO(sp
, ecp
->cp
, CHAR_T
*, len
* 2 * sizeof(CHAR_T
));
120 /* Copy the buffer into the command space. */
121 for (p
= ecp
->cp
+ len
, tp
= TAILQ_LAST(&cbp
->textq
, _texth
);
122 tp
!= NULL
; tp
= TAILQ_PREV(tp
, _texth
, q
)) {
123 MEMCPYW(p
, tp
->lb
, tp
->len
);
128 LIST_INSERT_HEAD(&sp
->wp
->ecq
, ecp
, q
);