aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/option.c
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2021-12-09 21:23:03 +0100
committerBjörn Linse <bjorn.linse@gmail.com>2021-12-09 23:17:29 +0100
commitd9c1669a5474ee0d09dbe60372a2959207187290 (patch)
tree2f2b3cf29f58c25bfe8e523cac394f8f225bbf52 /src/nvim/option.c
parent51822f065590154561a59435ca920207fd39bdda (diff)
downloadrneovim-d9c1669a5474ee0d09dbe60372a2959207187290.tar.gz
rneovim-d9c1669a5474ee0d09dbe60372a2959207187290.tar.bz2
rneovim-d9c1669a5474ee0d09dbe60372a2959207187290.zip
refactor(misc1): move out misc functions which obviously belong elsewhere
Also make some function names more descriptive/regular.
Diffstat (limited to 'src/nvim/option.c')
-rw-r--r--src/nvim/option.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/option.c b/src/nvim/option.c
index 1fe2e1d04c..ecfdc85153 100644
--- a/src/nvim/option.c
+++ b/src/nvim/option.c
@@ -7898,7 +7898,7 @@ void set_fileformat(int eol_style, int opt_flags)
}
// This may cause the buffer to become (un)modified.
- check_status(curbuf);
+ redraw_buf_status_later(curbuf);
redraw_tabline = true;
need_maketitle = true; // Set window title later.
}