aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/message.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r--src/nvim/message.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c
index 73712489ad..53e5511a5a 100644
--- a/src/nvim/message.c
+++ b/src/nvim/message.c
@@ -1384,11 +1384,7 @@ void msgmore(int n)
return;
}
- if (n > 0) {
- pn = n;
- } else {
- pn = -n;
- }
+ pn = abs(n);
if (pn > p_report) {
if (n > 0) {
@@ -1426,9 +1422,7 @@ void msg_start(void)
{
bool did_return = false;
- if (msg_row < cmdline_row) {
- msg_row = cmdline_row;
- }
+ msg_row = MAX(msg_row, cmdline_row);
if (!msg_silent) {
XFREE_CLEAR(keep_msg); // don't display old message now
@@ -3382,9 +3376,7 @@ void msg_advance(int col)
}
return;
}
- if (col >= Columns) { // not enough room
- col = Columns - 1;
- }
+ col = MIN(col, Columns - 1); // not enough room
while (msg_col < col) {
msg_putchar(' ');
}