From 78a1531005adc6bfe435ee2b9207864688bea7e9 Mon Sep 17 00:00:00 2001 From: Bram Moolenaar Date: Fri, 15 May 2009 19:33:18 +0000 Subject: updated for version 7.2-174 --- src/move.c | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) (limited to 'src/move.c') diff --git a/src/move.c b/src/move.c index 17b16a1e89..abf055f3c6 100644 --- a/src/move.c +++ b/src/move.c @@ -1238,11 +1238,10 @@ curs_columns(scroll) /* * Scroll the current window down by "line_count" logical lines. "CTRL-Y" */ -/*ARGSUSED*/ void scrolldown(line_count, byfold) long line_count; - int byfold; /* TRUE: count a closed fold as one line */ + int byfold UNUSED; /* TRUE: count a closed fold as one line */ { long done = 0; /* total # of physical lines done */ int wrow; @@ -1349,11 +1348,10 @@ scrolldown(line_count, byfold) /* * Scroll the current window up by "line_count" logical lines. "CTRL-E" */ -/*ARGSUSED*/ void scrollup(line_count, byfold) long line_count; - int byfold; /* TRUE: count a closed fold as one line */ + int byfold UNUSED; /* TRUE: count a closed fold as one line */ { #if defined(FEAT_FOLDING) || defined(FEAT_DIFF) linenr_T lnum; -- cgit v1.2.3