aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/ops.c
diff options
context:
space:
mode:
authorMichael Reed <m.reed@mykolab.com>2015-05-13 15:31:40 -0400
committerMichael Reed <m.reed@mykolab.com>2015-05-13 15:31:40 -0400
commite888c479f3d34a1948c63495328b4184ff2ab874 (patch)
treef7dfab3c160479dd7170fbdb47684c6fd9188f4e /src/nvim/ops.c
parentaf4b0a76a757f44ea7fbfc8e1c863952adc6ac1e (diff)
parentaf3381b3196107653c04b56e7fae07e8a9a320ed (diff)
downloadrneovim-e888c479f3d34a1948c63495328b4184ff2ab874.tar.gz
rneovim-e888c479f3d34a1948c63495328b4184ff2ab874.tar.bz2
rneovim-e888c479f3d34a1948c63495328b4184ff2ab874.zip
Merge pull request #2619 from Pyrohh/char_u-to-char
[RDY] Remove char_u (6)
Diffstat (limited to 'src/nvim/ops.c')
-rw-r--r--src/nvim/ops.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/ops.c b/src/nvim/ops.c
index 268f2ac94f..2cbf74ac90 100644
--- a/src/nvim/ops.c
+++ b/src/nvim/ops.c
@@ -591,7 +591,7 @@ void op_reindent(oparg_T *oap, Indenter how)
if (i > 1
&& (i % 50 == 0 || i == oap->line_count - 1)
&& oap->line_count > p_report)
- smsg((char_u *)_("%" PRId64 " lines to indent... "), (int64_t)i);
+ smsg(_("%" PRId64 " lines to indent... "), (int64_t)i);
/*
* Be vi-compatible: For lisp indenting the first line is not
@@ -635,7 +635,7 @@ void op_reindent(oparg_T *oap, Indenter how)
if (i == 1)
MSG(_("1 line indented "));
else
- smsg((char_u *)_("%" PRId64 " lines indented "), (int64_t)i);
+ smsg(_("%" PRId64 " lines indented "), (int64_t)i);
}
/* set '[ and '] marks */
curbuf->b_op_start = oap->start;
@@ -1902,7 +1902,7 @@ void op_tilde(oparg_T *oap)
if (oap->line_count == 1)
MSG(_("1 line changed"));
else
- smsg((char_u *)_("%" PRId64 " lines changed"), (int64_t)oap->line_count);
+ smsg(_("%" PRId64 " lines changed"), (int64_t)oap->line_count);
}
}
@@ -2497,10 +2497,10 @@ static void op_yank_reg(oparg_T *oap, bool message, yankreg_T *reg, bool append)
else
MSG(_("1 line yanked"));
} else if (oap->block_mode)
- smsg((char_u *)_("block of %" PRId64 " lines yanked"),
+ smsg(_("block of %" PRId64 " lines yanked"),
(int64_t)yanklines);
else
- smsg((char_u *)_("%" PRId64 " lines yanked"), (int64_t)yanklines);
+ smsg(_("%" PRId64 " lines yanked"), (int64_t)yanklines);
}
}