NetBSD/usr.bin/vi/ex/ex_mark.c

46 lines
888 B
C
Raw Normal View History

/*-
* Copyright (c) 1992, 1993, 1994
* The Regents of the University of California. All rights reserved.
1996-05-20 07:47:00 +04:00
* Copyright (c) 1992, 1993, 1994, 1995, 1996
* Keith Bostic. All rights reserved.
*
1996-05-20 07:47:00 +04:00
* See the LICENSE file for redistribution information.
*/
1996-05-20 07:47:00 +04:00
#include "config.h"
#ifndef lint
1996-05-20 07:47:00 +04:00
static const char sccsid[] = "@(#)ex_mark.c 10.8 (Berkeley) 3/6/96";
#endif /* not lint */
#include <sys/types.h>
#include <sys/queue.h>
#include <bitstring.h>
#include <limits.h>
#include <stdio.h>
1996-05-20 07:47:00 +04:00
#include "../common/common.h"
1996-05-20 07:47:00 +04:00
/*
* ex_mark -- :mark char
* :k char
* Mark lines.
*
*
* PUBLIC: int ex_mark __P((SCR *, EXCMD *));
*/
int
1996-05-20 07:47:00 +04:00
ex_mark(sp, cmdp)
SCR *sp;
1996-05-20 07:47:00 +04:00
EXCMD *cmdp;
{
1996-05-20 07:47:00 +04:00
NEEDFILE(sp, cmdp);
if (cmdp->argv[0]->len != 1) {
1996-05-20 07:47:00 +04:00
msgq(sp, M_ERR, "136|Mark names must be a single character");
return (1);
}
1996-05-20 07:47:00 +04:00
return (mark_set(sp, cmdp->argv[0]->bp[0], &cmdp->addr1, 1));
}