1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180
|
/*-
* Copyright (c) 1992, 1993, 1994
* The Regents of the University of California. All rights reserved.
* Copyright (c) 1992, 1993, 1994, 1995, 1996
* Keith Bostic. All rights reserved.
*
* See the LICENSE file for redistribution information.
*/
#include "config.h"
#ifndef lint
static const char sccsid[] = "@(#)v_util.c 10.11 (Berkeley) 6/30/96";
#endif /* not lint */
#include <sys/types.h>
#include <sys/queue.h>
#include <sys/time.h>
#include <bitstring.h>
#include <ctype.h>
#include <limits.h>
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <unistd.h>
#include "../common/common.h"
#include "vi.h"
/*
* v_eof --
* Vi end-of-file error.
*
* PUBLIC: void v_eof __P((SCR *, MARK *));
*/
void
v_eof(sp, mp)
SCR *sp;
MARK *mp;
{
recno_t lno;
if (mp == NULL)
v_emsg(sp, NULL, VIM_EOF);
else {
if (db_last(sp, &lno))
return;
if (mp->lno >= lno)
v_emsg(sp, NULL, VIM_EOF);
else
msgq(sp, M_BERR, "195|Movement past the end-of-file");
}
}
/*
* v_eol --
* Vi end-of-line error.
*
* PUBLIC: void v_eol __P((SCR *, MARK *));
*/
void
v_eol(sp, mp)
SCR *sp;
MARK *mp;
{
size_t len;
if (mp == NULL)
v_emsg(sp, NULL, VIM_EOL);
else {
if (db_get(sp, mp->lno, DBG_FATAL, NULL, &len))
return;
if (mp->cno == len - 1)
v_emsg(sp, NULL, VIM_EOL);
else
msgq(sp, M_BERR, "196|Movement past the end-of-line");
}
}
/*
* v_nomove --
* Vi no cursor movement error.
*
* PUBLIC: void v_nomove __P((SCR *));
*/
void
v_nomove(sp)
SCR *sp;
{
msgq(sp, M_BERR, "197|No cursor movement made");
}
/*
* v_sof --
* Vi start-of-file error.
*
* PUBLIC: void v_sof __P((SCR *, MARK *));
*/
void
v_sof(sp, mp)
SCR *sp;
MARK *mp;
{
if (mp == NULL || mp->lno == 1)
msgq(sp, M_BERR, "198|Already at the beginning of the file");
else
msgq(sp, M_BERR, "199|Movement past the beginning of the file");
}
/*
* v_sol --
* Vi start-of-line error.
*
* PUBLIC: void v_sol __P((SCR *));
*/
void
v_sol(sp)
SCR *sp;
{
msgq(sp, M_BERR, "200|Already in the first column");
}
/*
* v_isempty --
* Return if the line contains nothing but white-space characters.
*
* PUBLIC: int v_isempty __P((char *, size_t));
*/
int
v_isempty(p, len)
char *p;
size_t len;
{
for (; len--; ++p)
if (!isblank(*p))
return (0);
return (1);
}
/*
* v_emsg --
* Display a few common vi messages.
*
* PUBLIC: void v_emsg __P((SCR *, char *, vim_t));
*/
void
v_emsg(sp, p, which)
SCR *sp;
char *p;
vim_t which;
{
switch (which) {
case VIM_COMBUF:
msgq(sp, M_ERR,
"201|Buffers should be specified before the command");
break;
case VIM_EMPTY:
msgq(sp, M_BERR, "209|The file is empty");
break;
case VIM_EOF:
msgq(sp, M_BERR, "202|Already at end-of-file");
break;
case VIM_EOL:
msgq(sp, M_BERR, "203|Already at end-of-line");
break;
case VIM_NOCOM:
case VIM_NOCOM_B:
msgq(sp,
which == VIM_NOCOM_B ? M_BERR : M_ERR,
"204|%s isn't a vi command", p);
break;
case VIM_WRESIZE:
msgq(sp, M_ERR, "Window resize interrupted text input mode");
break;
case VIM_USAGE:
msgq(sp, M_ERR, "205|Usage: %s", p);
break;
}
}
|