kernel - Intel user/kernel separation MMU bug fix part 2/3
[dragonfly.git] / contrib / nvi2 / ex / ex_delete.c
blobe59948981560321d7f66b144bd0aadf5bc452076
1 /*-
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.
8 */
10 #include "config.h"
12 #ifndef lint
13 static const char sccsid[] = "$Id: ex_delete.c,v 10.11 2001/06/25 15:19:15 skimo Exp $";
14 #endif /* not lint */
16 #include <sys/types.h>
17 #include <sys/queue.h>
18 #include <sys/time.h>
20 #include <bitstring.h>
21 #include <limits.h>
22 #include <stdio.h>
24 #include "../common/common.h"
27 * ex_delete: [line [,line]] d[elete] [buffer] [count] [flags]
29 * Delete lines from the file.
31 * PUBLIC: int ex_delete(SCR *, EXCMD *);
33 int
34 ex_delete(SCR *sp, EXCMD *cmdp)
36 recno_t lno;
38 NEEDFILE(sp, cmdp);
41 * !!!
42 * Historically, lines deleted in ex were not placed in the numeric
43 * buffers. We follow historic practice so that we don't overwrite
44 * vi buffers accidentally.
46 if (cut(sp,
47 FL_ISSET(cmdp->iflags, E_C_BUFFER) ? &cmdp->buffer : NULL,
48 &cmdp->addr1, &cmdp->addr2, CUT_LINEMODE))
49 return (1);
51 /* Delete the lines. */
52 if (del(sp, &cmdp->addr1, &cmdp->addr2, 1))
53 return (1);
55 /* Set the cursor to the line after the last line deleted. */
56 sp->lno = cmdp->addr1.lno;
58 /* Or the last line in the file if deleted to the end of the file. */
59 if (db_last(sp, &lno))
60 return (1);
61 if (sp->lno > lno)
62 sp->lno = lno;
63 return (0);