NetBSD/usr.bin/vi/ex/ex_stop.c

54 lines
1.1 KiB
C
Raw Normal View History

1998-01-09 11:03:16 +03:00
/* $NetBSD: ex_stop.c,v 1.7 1998/01/09 08:08:04 perry Exp $ */
/*-
* Copyright (c) 1993, 1994
* 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.
*
1996-05-20 07:47:00 +04:00
* See the LICENSE file for redistribution information.
*/
1996-05-20 07:47:00 +04:00
#include "config.h"
#ifndef lint
1996-05-20 07:47:00 +04:00
static const char sccsid[] = "@(#)ex_stop.c 10.10 (Berkeley) 3/6/96";
#endif /* not lint */
#include <sys/types.h>
#include <sys/queue.h>
#include <bitstring.h>
#include <errno.h>
#include <limits.h>
#include <stdio.h>
#include <string.h>
#include <unistd.h>
1996-05-20 07:47:00 +04:00
#include "../common/common.h"
/*
* ex_stop -- :stop[!]
* :suspend[!]
* Suspend execution.
1996-05-20 07:47:00 +04:00
*
* PUBLIC: int ex_stop __P((SCR *, EXCMD *));
*/
int
1996-05-20 07:47:00 +04:00
ex_stop(sp, cmdp)
SCR *sp;
1996-05-20 07:47:00 +04:00
EXCMD *cmdp;
{
1996-05-20 07:47:00 +04:00
int allowed;
/* For some strange reason, the force flag turns off autowrite. */
1996-05-20 07:47:00 +04:00
if (!FL_ISSET(cmdp->iflags, E_C_FORCE) && file_aw(sp, FS_ALL))
return (1);
if (sp->gp->scr_suspend(sp, &allowed))
return (1);
1996-05-20 07:47:00 +04:00
if (!allowed)
ex_emsg(sp, NULL, EXM_NOSUSPEND);
return (0);
}