text input: fix problem with autoindenting and ^^D
[nvi.git] / ex / ex_quit.c
bloba1c0f0da996346797b0e7f31be7a93ea157986fa
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_quit.c,v 10.8 2001/06/25 15:19:18 skimo Exp $ (Berkeley) $Date: 2001/06/25 15:19:18 $";
14 #endif /* not lint */
16 #include <sys/types.h>
17 #include <sys/queue.h>
19 #include <bitstring.h>
20 #include <limits.h>
21 #include <stdio.h>
23 #include "../common/common.h"
26 * ex_quit -- :quit[!]
27 * Quit.
29 * PUBLIC: int ex_quit __P((SCR *, EXCMD *));
31 int
32 ex_quit(SCR *sp, EXCMD *cmdp)
34 int force;
36 force = FL_ISSET(cmdp->iflags, E_C_FORCE);
38 /* Check for file modifications, or more files to edit. */
39 if (file_m2(sp, force) || ex_ncheck(sp, force))
40 return (1);
42 F_SET(sp, force ? SC_EXIT_FORCE : SC_EXIT);
43 return (0);