From 8fb4097fc6063178c458809ca88db0ab7df26536 Mon Sep 17 00:00:00 2001 From: Eliseo Martínez Date: Sun, 19 Oct 2014 23:08:56 +0200 Subject: Review: Remove long_u: memfile: Cleanup: Comments. - Restyle comments (/// when appropiate, // otherwise). - Improve comments (add new comments, augment/clarify existing ones). --- src/nvim/memfile.h | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) (limited to 'src/nvim/memfile.h') 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" -- cgit