1 /* $NetBSD: v_delete.c,v 1.2 2013/11/22 15:52:06 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.
14 static const char sccsid
[] = "Id: v_delete.c,v 10.11 2001/06/25 15:19:31 skimo Exp (Berkeley) Date: 2001/06/25 15:19:31 ";
17 #include <sys/types.h>
18 #include <sys/queue.h>
21 #include <bitstring.h>
25 #include "../common/common.h"
29 * v_delete -- [buffer][count]d[count]motion
31 * Delete a range of text.
33 * PUBLIC: int v_delete __P((SCR *, VICMD *));
36 v_delete(SCR
*sp
, VICMD
*vp
)
42 lmode
= F_ISSET(vp
, VM_LMODE
) ? CUT_LINEMODE
: 0;
45 if (cut(sp
, F_ISSET(vp
, VC_BUFFER
) ? &vp
->buffer
: NULL
,
46 &vp
->m_start
, &vp
->m_stop
,
47 lmode
| (F_ISSET(vp
, VM_CUTREQ
) ? CUT_NUMREQ
: CUT_NUMOPT
)))
50 /* Delete the lines. */
51 if (del(sp
, &vp
->m_start
, &vp
->m_stop
, lmode
))
55 * Check for deletion of the entire file. Try to check a close
56 * by line so we don't go to the end of the file unnecessarily.
58 if (!db_exist(sp
, vp
->m_final
.lno
+ 1)) {
59 if (db_last(sp
, &nlines
))
69 * One special correction, in case we've deleted the current line or
70 * character. We check it here instead of checking in every command
71 * that can be a motion component.
73 if (db_get(sp
, vp
->m_final
.lno
, 0, NULL
, &len
)) {
74 if (db_get(sp
, nlines
, DBG_FATAL
, NULL
, &len
))
76 vp
->m_final
.lno
= nlines
;
81 * Cursor movements, other than those caused by a line mode command
82 * moving to another line, historically reset the relative position.
84 * This currently matches the check made in v_yank(), I'm hoping that
85 * they should be consistent...
87 if (!F_ISSET(vp
, VM_LMODE
)) {
88 F_CLR(vp
, VM_RCM_MASK
);
89 F_SET(vp
, VM_RCM_SET
);
91 /* Make sure the set cursor position exists. */
92 if (vp
->m_final
.cno
>= len
)
93 vp
->m_final
.cno
= len
? len
- 1 : 0;
98 * The "dd" command moved to the first non-blank; "d<motion>"
101 if (F_ISSET(vp
, VM_LDOUBLE
)) {
102 F_CLR(vp
, VM_RCM_MASK
);
103 F_SET(vp
, VM_RCM_SETFNB
);