aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/fileio.c
diff options
context:
space:
mode:
authorckelsel <ckelsel@hotmail.com>2017-07-11 09:07:18 +0800
committerJames McCoy <jamessan@jamessan.com>2017-07-13 23:09:03 -0400
commit462a6148a64f2c2faabdee1eacac273ddbbd095a (patch)
tree04ea060416cbffe4ad3c6da857b4ef6da1811f76 /src/nvim/fileio.c
parent2999d7c0e89087f76711e914eb65af55578a6691 (diff)
downloadrneovim-462a6148a64f2c2faabdee1eacac273ddbbd095a.tar.gz
rneovim-462a6148a64f2c2faabdee1eacac273ddbbd095a.tar.bz2
rneovim-462a6148a64f2c2faabdee1eacac273ddbbd095a.zip
lint
Diffstat (limited to 'src/nvim/fileio.c')
-rw-r--r--src/nvim/fileio.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/fileio.c b/src/nvim/fileio.c
index 41117fdd3d..a0536d456d 100644
--- a/src/nvim/fileio.c
+++ b/src/nvim/fileio.c
@@ -268,7 +268,7 @@ readfile (
int filtering = (flags & READ_FILTER);
int read_stdin = (flags & READ_STDIN);
int read_buffer = (flags & READ_BUFFER);
- int read_fifo = (flags & READ_FIFO);
+ int read_fifo = (flags & READ_FIFO);
int set_options = newfile || read_buffer
|| (eap != NULL && eap->read_edit);
linenr_T read_buf_lnum = 1; /* next line to read from curbuf */
@@ -471,7 +471,7 @@ readfile (
curbuf->b_p_ro = FALSE;
if (newfile && !read_stdin && !read_buffer && !read_fifo) {
- /* Remember time of file. */
+ // Remember time of file.
FileInfo file_info;
if (os_fileinfo((char *)fname, &file_info)) {
buf_store_file_info(curbuf, &file_info);