only clean out gs when last window goes
[nvi.git] / ex / ex_mark.c
blob44b0a44296bc71cf90329370d1b559974d6b4cb1
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_mark.c,v 10.8 1996/03/06 19:52:25 bostic Exp $ (Berkeley) $Date: 1996/03/06 19:52:25 $";
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_mark -- :mark char
27 * :k char
28 * Mark lines.
31 * PUBLIC: int ex_mark __P((SCR *, EXCMD *));
33 int
34 ex_mark(sp, cmdp)
35 SCR *sp;
36 EXCMD *cmdp;
38 NEEDFILE(sp, cmdp);
40 if (cmdp->argv[0]->len != 1) {
41 msgq(sp, M_ERR, "136|Mark names must be a single character");
42 return (1);
44 return (mark_set(sp, cmdp->argv[0]->bp[0], &cmdp->addr1, 1));