2 * Copyright (c) 1992, 1993, 1994
3 * The Regents of the University of California. All rights reserved.
4 * Copyright (c) 1992, 1993, 1994, 1995, 1996
5 * Keith Bostic. All rights reserved.
7 * See the LICENSE file for redistribution information.
13 static const char sccsid
[] = "$Id: ex_delete.c,v 10.9 1996/10/23 09:31:30 bostic Exp $ (Berkeley) $Date: 1996/10/23 09:31:30 $";
16 #include <sys/types.h>
17 #include <sys/queue.h>
19 #include <bitstring.h>
23 #include "../common/common.h"
26 * ex_delete: [line [,line]] d[elete] [buffer] [count] [flags]
28 * Delete lines from the file.
30 * PUBLIC: int ex_delete __P((SCR *, EXCMD *));
43 * Historically, lines deleted in ex were not placed in the numeric
44 * buffers. We follow historic practice so that we don't overwrite
45 * vi buffers accidentally.
48 FL_ISSET(cmdp
->iflags
, E_C_BUFFER
) ? &cmdp
->buffer
: NULL
,
49 &cmdp
->addr1
, &cmdp
->addr2
, CUT_LINEMODE
))
52 /* Delete the lines. */
53 if (del(sp
, &cmdp
->addr1
, &cmdp
->addr2
, 1))
56 /* Set the cursor to the line after the last line deleted. */
57 sp
->lno
= cmdp
->addr1
.lno
;
59 /* Or the last line in the file if deleted to the end of the file. */
60 if (db_last(sp
, &lno
))