aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/pos.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/nvim/pos.h')
-rw-r--r--src/nvim/pos.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/pos.h b/src/nvim/pos.h
index b7c4b6ef92..2fbd049aa0 100644
--- a/src/nvim/pos.h
+++ b/src/nvim/pos.h
@@ -26,8 +26,8 @@ enum { MINCOL = 1 };
* position in file or buffer
*/
typedef struct {
- linenr_T lnum; /* line number */
- colnr_T col; /* column number */
+ linenr_T lnum; // line number
+ colnr_T col; // column number
colnr_T coladd;
} pos_T;
@@ -36,8 +36,8 @@ typedef struct {
* Same, but without coladd.
*/
typedef struct {
- linenr_T lnum; /* line number */
- colnr_T col; /* column number */
+ linenr_T lnum; // line number
+ colnr_T col; // column number
} lpos_T;
#endif // NVIM_POS_H