=================================================================== RCS file: /cvsrepo/anoncvs/cvs/src/usr.bin/mg/paragraph.c,v retrieving revision 1.7 retrieving revision 1.8 diff -u -r1.7 -r1.8 --- src/usr.bin/mg/paragraph.c 2002/02/14 14:24:21 1.7 +++ src/usr.bin/mg/paragraph.c 2003/05/20 03:08:55 1.8 @@ -1,4 +1,4 @@ -/* $OpenBSD: paragraph.c,v 1.7 2002/02/14 14:24:21 deraadt Exp $ */ +/* $OpenBSD: paragraph.c,v 1.8 2003/05/20 03:08:55 cloder Exp $ */ /* * Code for dealing with paragraphs and filling. Adapted from MicroEMACS 3.6 @@ -18,8 +18,7 @@ */ /* ARGSUSED */ int -gotobop(f, n) - int f, n; +gotobop(int f, int n) { /* the other way... */ if (n < 0) @@ -72,8 +71,7 @@ */ /* ARGSUSED */ int -gotoeop(f, n) - int f, n; +gotoeop(int f, int n) { /* the other way... */ if (n < 0) @@ -116,8 +114,7 @@ */ /* ARGSUSED */ int -fillpara(f, n) - int f, n; +fillpara(int f, int n) { int c; /* current char durring scan */ int wordlen; /* length of current word */ @@ -238,8 +235,7 @@ */ /* ARGSUSED */ int -killpara(f, n) - int f, n; +killpara(int f, int n) { int status; /* returned status of functions */ @@ -275,8 +271,7 @@ */ /* ARGSUSED */ int -fillword(f, n) - int f, n; +fillword(int f, int n) { char c; int col, i, nce; @@ -327,8 +322,7 @@ * Set fill column to n for justify. */ int -setfillcol(f, n) - int f, n; +setfillcol(int f, int n) { fillcol = ((f & FFARG) ? n : getcolpos()); ewprintf("Fill column set to %d", fillcol);