2002-04-09 05:47:30 +04:00
|
|
|
/* $NetBSD: ex_delete.c,v 1.9 2002/04/09 01:47:33 thorpej Exp $ */
|
1998-01-09 11:03:16 +03:00
|
|
|
|
1994-01-24 08:52:58 +03:00
|
|
|
/*-
|
1994-03-28 08:28:20 +04:00
|
|
|
* Copyright (c) 1992, 1993, 1994
|
1994-01-24 08:52:58 +03:00
|
|
|
* The Regents of the University of California. All rights reserved.
|
1996-05-20 07:47:00 +04:00
|
|
|
* Copyright (c) 1992, 1993, 1994, 1995, 1996
|
|
|
|
* Keith Bostic. All rights reserved.
|
1994-01-24 08:52:58 +03:00
|
|
|
*
|
1996-05-20 07:47:00 +04:00
|
|
|
* See the LICENSE file for redistribution information.
|
1994-01-24 08:52:58 +03:00
|
|
|
*/
|
|
|
|
|
1996-05-20 07:47:00 +04:00
|
|
|
#include "config.h"
|
|
|
|
|
2002-04-09 05:47:30 +04:00
|
|
|
#include <sys/cdefs.h>
|
1994-01-24 08:52:58 +03:00
|
|
|
#ifndef lint
|
2002-04-09 05:47:30 +04:00
|
|
|
#if 0
|
2001-03-31 15:37:44 +04:00
|
|
|
static const char sccsid[] = "@(#)ex_delete.c 10.9 (Berkeley) 10/23/96";
|
2002-04-09 05:47:30 +04:00
|
|
|
#else
|
|
|
|
__RCSID("$NetBSD");
|
|
|
|
#endif
|
1994-01-24 08:52:58 +03:00
|
|
|
#endif /* not lint */
|
|
|
|
|
|
|
|
#include <sys/types.h>
|
1994-03-28 08:28:20 +04:00
|
|
|
#include <sys/queue.h>
|
|
|
|
|
|
|
|
#include <bitstring.h>
|
|
|
|
#include <limits.h>
|
|
|
|
#include <stdio.h>
|
1994-01-24 08:52:58 +03:00
|
|
|
|
1996-05-20 07:47:00 +04:00
|
|
|
#include "../common/common.h"
|
1994-01-24 08:52:58 +03:00
|
|
|
|
|
|
|
/*
|
|
|
|
* ex_delete: [line [,line]] d[elete] [buffer] [count] [flags]
|
|
|
|
*
|
|
|
|
* Delete lines from the file.
|
1996-05-20 07:47:00 +04:00
|
|
|
*
|
|
|
|
* PUBLIC: int ex_delete __P((SCR *, EXCMD *));
|
1994-01-24 08:52:58 +03:00
|
|
|
*/
|
|
|
|
int
|
1996-05-20 07:47:00 +04:00
|
|
|
ex_delete(sp, cmdp)
|
1994-01-24 08:52:58 +03:00
|
|
|
SCR *sp;
|
1996-05-20 07:47:00 +04:00
|
|
|
EXCMD *cmdp;
|
1994-01-24 08:52:58 +03:00
|
|
|
{
|
|
|
|
recno_t lno;
|
|
|
|
|
1996-05-20 07:47:00 +04:00
|
|
|
NEEDFILE(sp, cmdp);
|
|
|
|
|
1994-08-17 20:35:35 +04:00
|
|
|
/*
|
|
|
|
* !!!
|
|
|
|
* Historically, lines deleted in ex were not placed in the numeric
|
|
|
|
* buffers. We follow historic practice so that we don't overwrite
|
|
|
|
* vi buffers accidentally.
|
|
|
|
*/
|
1996-05-20 07:47:00 +04:00
|
|
|
if (cut(sp,
|
|
|
|
FL_ISSET(cmdp->iflags, E_C_BUFFER) ? &cmdp->buffer : NULL,
|
1994-08-17 20:35:35 +04:00
|
|
|
&cmdp->addr1, &cmdp->addr2, CUT_LINEMODE))
|
1994-01-24 08:52:58 +03:00
|
|
|
return (1);
|
|
|
|
|
|
|
|
/* Delete the lines. */
|
2001-03-31 15:37:44 +04:00
|
|
|
if (del(sp, &cmdp->addr1, &cmdp->addr2, 1))
|
1994-01-24 08:52:58 +03:00
|
|
|
return (1);
|
|
|
|
|
|
|
|
/* Set the cursor to the line after the last line deleted. */
|
|
|
|
sp->lno = cmdp->addr1.lno;
|
|
|
|
|
|
|
|
/* Or the last line in the file if deleted to the end of the file. */
|
1996-05-20 07:47:00 +04:00
|
|
|
if (db_last(sp, &lno))
|
1994-01-24 08:52:58 +03:00
|
|
|
return (1);
|
|
|
|
if (sp->lno > lno)
|
|
|
|
sp->lno = lno;
|
|
|
|
return (0);
|
|
|
|
}
|