aboutsummaryrefslogtreecommitdiff
path: root/vi/v_util.c
diff options
context:
space:
mode:
Diffstat (limited to 'vi/v_util.c')
-rw-r--r--vi/v_util.c31
1 files changed, 9 insertions, 22 deletions
diff --git a/vi/v_util.c b/vi/v_util.c
index c4c0daa901fd..6348ca73ec85 100644
--- a/vi/v_util.c
+++ b/vi/v_util.c
@@ -10,7 +10,7 @@
#include "config.h"
#ifndef lint
-static const char sccsid[] = "@(#)v_util.c 10.11 (Berkeley) 6/30/96";
+static const char sccsid[] = "$Id: v_util.c,v 10.14 2001/06/25 15:19:36 skimo Exp $";
#endif /* not lint */
#include <sys/types.h>
@@ -35,9 +35,7 @@ static const char sccsid[] = "@(#)v_util.c 10.11 (Berkeley) 6/30/96";
* PUBLIC: void v_eof __P((SCR *, MARK *));
*/
void
-v_eof(sp, mp)
- SCR *sp;
- MARK *mp;
+v_eof(SCR *sp, MARK *mp)
{
recno_t lno;
@@ -60,9 +58,7 @@ v_eof(sp, mp)
* PUBLIC: void v_eol __P((SCR *, MARK *));
*/
void
-v_eol(sp, mp)
- SCR *sp;
- MARK *mp;
+v_eol(SCR *sp, MARK *mp)
{
size_t len;
@@ -85,8 +81,7 @@ v_eol(sp, mp)
* PUBLIC: void v_nomove __P((SCR *));
*/
void
-v_nomove(sp)
- SCR *sp;
+v_nomove(SCR *sp)
{
msgq(sp, M_BERR, "197|No cursor movement made");
}
@@ -98,9 +93,7 @@ v_nomove(sp)
* PUBLIC: void v_sof __P((SCR *, MARK *));
*/
void
-v_sof(sp, mp)
- SCR *sp;
- MARK *mp;
+v_sof(SCR *sp, MARK *mp)
{
if (mp == NULL || mp->lno == 1)
msgq(sp, M_BERR, "198|Already at the beginning of the file");
@@ -115,8 +108,7 @@ v_sof(sp, mp)
* PUBLIC: void v_sol __P((SCR *));
*/
void
-v_sol(sp)
- SCR *sp;
+v_sol(SCR *sp)
{
msgq(sp, M_BERR, "200|Already in the first column");
}
@@ -125,12 +117,10 @@ v_sol(sp)
* v_isempty --
* Return if the line contains nothing but white-space characters.
*
- * PUBLIC: int v_isempty __P((char *, size_t));
+ * PUBLIC: int v_isempty __P((CHAR_T *, size_t));
*/
int
-v_isempty(p, len)
- char *p;
- size_t len;
+v_isempty(CHAR_T *p, size_t len)
{
for (; len--; ++p)
if (!isblank(*p))
@@ -145,10 +135,7 @@ v_isempty(p, len)
* PUBLIC: void v_emsg __P((SCR *, char *, vim_t));
*/
void
-v_emsg(sp, p, which)
- SCR *sp;
- char *p;
- vim_t which;
+v_emsg(SCR *sp, char *p, vim_t which)
{
switch (which) {
case VIM_COMBUF: