HAMMER Utilities: Remove time/transaction-id conversion directives.
[dragonfly.git] / contrib / nvi / ex / ex_mark.c
blob08ad8c2aa30b076d43b1e284432197c9c546c4dd
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[] = "@(#)ex_mark.c 10.8 (Berkeley) 3/6/96";
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));