1 /* $NetBSD: v_delete.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 * See the LICENSE file for redistribution information.
13 #include <sys/cdefs.h>
16 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 ";
19 __RCSID("$NetBSD: v_delete.c,v 1.3 2014/01/26 21:43:45 christos Exp $");
22 #include <sys/types.h>
23 #include <sys/queue.h>
26 #include <bitstring.h>
30 #include "../common/common.h"
34 * v_delete -- [buffer][count]d[count]motion
36 * Delete a range of text.
38 * PUBLIC: int v_delete __P((SCR *, VICMD *));
41 v_delete(SCR
*sp
, VICMD
*vp
)
47 lmode
= F_ISSET(vp
, VM_LMODE
) ? CUT_LINEMODE
: 0;
50 if (cut(sp
, F_ISSET(vp
, VC_BUFFER
) ? &vp
->buffer
: NULL
,
51 &vp
->m_start
, &vp
->m_stop
,
52 lmode
| (F_ISSET(vp
, VM_CUTREQ
) ? CUT_NUMREQ
: CUT_NUMOPT
)))
55 /* Delete the lines. */
56 if (del(sp
, &vp
->m_start
, &vp
->m_stop
, lmode
))
60 * Check for deletion of the entire file. Try to check a close
61 * by line so we don't go to the end of the file unnecessarily.
63 if (!db_exist(sp
, vp
->m_final
.lno
+ 1)) {
64 if (db_last(sp
, &nlines
))
74 * One special correction, in case we've deleted the current line or
75 * character. We check it here instead of checking in every command
76 * that can be a motion component.
78 if (db_get(sp
, vp
->m_final
.lno
, 0, NULL
, &len
)) {
79 if (db_get(sp
, nlines
, DBG_FATAL
, NULL
, &len
))
81 vp
->m_final
.lno
= nlines
;
86 * Cursor movements, other than those caused by a line mode command
87 * moving to another line, historically reset the relative position.
89 * This currently matches the check made in v_yank(), I'm hoping that
90 * they should be consistent...
92 if (!F_ISSET(vp
, VM_LMODE
)) {
93 F_CLR(vp
, VM_RCM_MASK
);
94 F_SET(vp
, VM_RCM_SET
);
96 /* Make sure the set cursor position exists. */
97 if (vp
->m_final
.cno
>= len
)
98 vp
->m_final
.cno
= len
? len
- 1 : 0;
103 * The "dd" command moved to the first non-blank; "d<motion>"
106 if (F_ISSET(vp
, VM_LDOUBLE
)) {
107 F_CLR(vp
, VM_RCM_MASK
);
108 F_SET(vp
, VM_RCM_SETFNB
);