common/log.c: minor whitespace change
[nvi.git] / ex / ex_mark.c
blobb4feb20d60bb35939f4e68417434777c5082b353
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.9 2001/06/25 15:19:17 skimo Exp $ (Berkeley) $Date: 2001/06/25 15:19:17 $";
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(SCR *sp, EXCMD *cmdp)
36 NEEDFILE(sp, cmdp);
38 if (cmdp->argv[0]->len != 1) {
39 msgq(sp, M_ERR, "136|Mark names must be a single character");
40 return (1);
42 return (mark_set(sp, cmdp->argv[0]->bp[0], &cmdp->addr1, 1));