aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/getchar.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/getchar.c')
-rw-r--r--src/nvim/getchar.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/nvim/getchar.c b/src/nvim/getchar.c
index eb78317ee7..9fc4c297f5 100644
--- a/src/nvim/getchar.c
+++ b/src/nvim/getchar.c
@@ -1261,9 +1261,9 @@ static int old_KeyStuffed; // whether old_char was stuffed
static bool can_get_old_char(void)
{
- // If the old character was not stuffed and characters have been added to
- // the stuff buffer, need to first get the stuffed characters instead.
- return old_char != -1 && (old_KeyStuffed || stuff_empty());
+ // If the old character was not stuffed and characters have been added to
+ // the stuff buffer, need to first get the stuffed characters instead.
+ return old_char != -1 && (old_KeyStuffed || stuff_empty());
}
/*