aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/fileio.h
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.h
parent2999d7c0e89087f76711e914eb65af55578a6691 (diff)
downloadrneovim-462a6148a64f2c2faabdee1eacac273ddbbd095a.tar.gz
rneovim-462a6148a64f2c2faabdee1eacac273ddbbd095a.tar.bz2
rneovim-462a6148a64f2c2faabdee1eacac273ddbbd095a.zip
lint
Diffstat (limited to 'src/nvim/fileio.h')
-rw-r--r--src/nvim/fileio.h16
1 files changed, 8 insertions, 8 deletions
diff --git a/src/nvim/fileio.h b/src/nvim/fileio.h
index 05dd0fa2c3..8db4b89806 100644
--- a/src/nvim/fileio.h
+++ b/src/nvim/fileio.h
@@ -4,14 +4,14 @@
#include "nvim/buffer_defs.h"
#include "nvim/os/os.h"
-/* Values for readfile() flags */
-#define READ_NEW 0x01 /* read a file into a new buffer */
-#define READ_FILTER 0x02 /* read filter output */
-#define READ_STDIN 0x04 /* read from stdin */
-#define READ_BUFFER 0x08 /* read from curbuf (converting stdin) */
-#define READ_DUMMY 0x10 /* reading into a dummy buffer */
-#define READ_KEEP_UNDO 0x20 /* keep undo info */
-#define READ_FIFO 0x40 /* read from fifo or socket */
+// Values for readfile() flags
+#define READ_NEW 0x01 // read a file into a new buffer
+#define READ_FILTER 0x02 // read filter output
+#define READ_STDIN 0x04 // read from stdin
+#define READ_BUFFER 0x08 // read from curbuf (converting stdin)
+#define READ_DUMMY 0x10 // reading into a dummy buffer
+#define READ_KEEP_UNDO 0x20 // keep undo info
+#define READ_FIFO 0x40 // read from fifo or socket
#define READ_STRING(x, y) (char_u *)read_string((x), (size_t)(y))