diff options
author | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-10-19 23:08:56 +0200 |
---|---|---|
committer | Eliseo Martínez <eliseomarmol@gmail.com> | 2014-11-06 22:53:40 +0100 |
commit | 8fb4097fc6063178c458809ca88db0ab7df26536 (patch) | |
tree | ccf5203b719aeb0a6735bd533e0454fa668e53c3 /src/nvim/memfile.h | |
parent | e7a863e12c58011bb1c32b21ab34eb33722664c4 (diff) | |
download | rneovim-8fb4097fc6063178c458809ca88db0ab7df26536.tar.gz rneovim-8fb4097fc6063178c458809ca88db0ab7df26536.tar.bz2 rneovim-8fb4097fc6063178c458809ca88db0ab7df26536.zip |
Review: Remove long_u: memfile: Cleanup: Comments.
- Restyle comments (/// when appropiate, // otherwise).
- Improve comments (add new comments, augment/clarify existing ones).
Diffstat (limited to 'src/nvim/memfile.h')
-rw-r--r-- | src/nvim/memfile.h | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/nvim/memfile.h b/src/nvim/memfile.h index 3e71853326..085fa22f12 100644 --- a/src/nvim/memfile.h +++ b/src/nvim/memfile.h @@ -4,11 +4,11 @@ #include "nvim/buffer_defs.h" #include "nvim/memfile_defs.h" -/* flags for mf_sync() */ -#define MFS_ALL 1 /* also sync blocks with negative numbers */ -#define MFS_STOP 2 /* stop syncing when a character is available */ -#define MFS_FLUSH 4 /* flushed file to disk */ -#define MFS_ZERO 8 /* only write block 0 */ +/// flags for mf_sync() +#define MFS_ALL 1 /// also sync blocks with negative numbers +#define MFS_STOP 2 /// stop syncing when a character is available +#define MFS_FLUSH 4 /// flushed file to disk +#define MFS_ZERO 8 /// only write block 0 #ifdef INCLUDE_GENERATED_DECLARATIONS # include "memfile.h.generated.h" |