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.
13 static const char sccsid
[] = "$Id: ex_mark.c,v 10.9 2001/06/25 15:19:17 skimo Exp $";
16 #include <sys/types.h>
17 #include <sys/queue.h>
20 #include <bitstring.h>
24 #include "../common/common.h"
27 * ex_mark -- :mark char
32 * PUBLIC: int ex_mark(SCR *, EXCMD *);
35 ex_mark(SCR
*sp
, EXCMD
*cmdp
)
39 if (cmdp
->argv
[0]->len
!= 1) {
40 msgq(sp
, M_ERR
, "136|Mark names must be a single character");
43 return (mark_set(sp
, cmdp
->argv
[0]->bp
[0], &cmdp
->addr1
, 1));