diff options
Diffstat (limited to 'usr.bin/vi/common/delete.c')
-rw-r--r-- | usr.bin/vi/common/delete.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/usr.bin/vi/common/delete.c b/usr.bin/vi/common/delete.c index 2c60b341a38..001788f9bb3 100644 --- a/usr.bin/vi/common/delete.c +++ b/usr.bin/vi/common/delete.c @@ -10,7 +10,7 @@ #include "config.h" #ifndef lint -static const char sccsid[] = "@(#)delete.c 10.11 (Berkeley) 9/15/96"; +static const char sccsid[] = "@(#)delete.c 10.12 (Berkeley) 10/23/96"; #endif /* not lint */ #include <sys/types.h> @@ -26,13 +26,13 @@ static const char sccsid[] = "@(#)delete.c 10.11 (Berkeley) 9/15/96"; #include "common.h" /* - * delete -- + * del -- * Delete a range of text. * - * PUBLIC: int delete __P((SCR *, MARK *, MARK *, int)); + * PUBLIC: int del __P((SCR *, MARK *, MARK *, int)); */ int -delete(sp, fm, tm, lmode) +del(sp, fm, tm, lmode) SCR *sp; MARK *fm, *tm; int lmode; |