summaryrefslogtreecommitdiffstats
path: root/src/main.c
diff options
context:
space:
mode:
authorBram Moolenaar <Bram@vim.org>2009-05-17 11:33:22 +0000
committerBram Moolenaar <Bram@vim.org>2009-05-17 11:33:22 +0000
commit2c4278fc738cca3fcd70cffd7ddc865ea9783694 (patch)
treeb6cf40176c3e3904782d82ab2cacc5afeb1d3d75 /src/main.c
parentbf0c4526bf4bac6f7193cacf2ad1c8802f84be18 (diff)
updated for version 7.2-180v7.2.180
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c9
1 files changed, 3 insertions, 6 deletions
diff --git a/src/main.c b/src/main.c
index 9f56e884ba..c0dd121425 100644
--- a/src/main.c
+++ b/src/main.c
@@ -1505,10 +1505,9 @@ parse_command_name(parmp)
*
* Also find the --server... arguments and --socketid and --windowid
*/
-/*ARGSUSED*/
static void
early_arg_scan(parmp)
- mparm_T *parmp;
+ mparm_T *parmp UNUSED;
{
#if defined(FEAT_XCLIPBOARD) || defined(FEAT_CLIENTSERVER) \
|| !defined(FEAT_NETBEANS_INTG)
@@ -2380,10 +2379,9 @@ read_stdin()
* Create the requested number of windows and edit buffers in them.
* Also does recovery if "recoverymode" set.
*/
-/*ARGSUSED*/
static void
create_windows(parmp)
- mparm_T *parmp;
+ mparm_T *parmp UNUSED;
{
#ifdef FEAT_WINDOWS
int dorewind;
@@ -3851,10 +3849,9 @@ eval_client_expr_to_string(expr)
* return an allocated string. Otherwise return "data".
* "*tofree" is set to the result when it needs to be freed later.
*/
-/*ARGSUSED*/
char_u *
serverConvert(client_enc, data, tofree)
- char_u *client_enc;
+ char_u *client_enc UNUSED;
char_u *data;
char_u **tofree;
{