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

62 lines
1.3 KiB
C
Raw Normal View History

/* $NetBSD: ex_equal.c,v 1.8 2000/10/18 01:42:05 tv Exp $ */
1998-01-09 11:03:16 +03:00
/*-
* 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_equal.c 10.10 (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"
/*
* ex_equal -- :address =
1996-05-20 07:47:00 +04:00
*
* PUBLIC: int ex_equal __P((SCR *, EXCMD *));
*/
int
1996-05-20 07:47:00 +04:00
ex_equal(sp, cmdp)
SCR *sp;
1996-05-20 07:47:00 +04:00
EXCMD *cmdp;
{
recno_t lno;
1996-05-20 07:47:00 +04:00
NEEDFILE(sp, cmdp);
/*
* Print out the line number matching the specified address,
* or the number of the last line in the file if no address
* specified.
*
* !!!
* Historically, ":0=" displayed 0, and ":=" or ":1=" in an
* empty file displayed 1. Until somebody complains loudly,
* we're going to do it right. The tables in excmd.c permit
* lno to get away with any address from 0 to the end of the
* file, which, in an empty file, is 0.
*/
1996-05-20 07:47:00 +04:00
if (F_ISSET(cmdp, E_ADDR_DEF)) {
if (db_last(sp, &lno))
return (1);
} else
lno = cmdp->addr1.lno;
(void)ex_printf(sp, "%ld\n", (long)lno);
return (0);
}