aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
diff options
context:
space:
mode:
authorJames McCoy <jamessan@jamessan.com>2016-11-02 20:04:10 -0400
committerGitHub <noreply@github.com>2016-11-02 20:04:10 -0400
commit9ef4be9aab6a9a16cf185ca17a2dabe87f8aa328 (patch)
tree61f8f49756967806c80c92ab99c144c21d2400ea /src/nvim/buffer_defs.h
parent349fa0048b7d45875daf96eefca0da163cd3a82f (diff)
parent654e92186ba4adcc48295998b840c76242456368 (diff)
downloadrneovim-9ef4be9aab6a9a16cf185ca17a2dabe87f8aa328.tar.gz
rneovim-9ef4be9aab6a9a16cf185ca17a2dabe87f8aa328.tar.bz2
rneovim-9ef4be9aab6a9a16cf185ca17a2dabe87f8aa328.zip
Merge pull request #5550 from jamessan/big-endian-fixes
Making nvim big-endian friendly
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r--src/nvim/buffer_defs.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h
index ab5987612c..2e6316c74a 100644
--- a/src/nvim/buffer_defs.h
+++ b/src/nvim/buffer_defs.h
@@ -488,9 +488,9 @@ struct file_buffer {
bool file_id_valid;
FileID file_id;
- bool b_changed; /* 'modified': Set to true if something in the
- file has been changed and not written out. */
- int b_changedtick; /* incremented for each change, also for undo */
+ int b_changed; // 'modified': Set to true if something in the
+ // file has been changed and not written out.
+ int b_changedtick; // incremented for each change, also for undo
bool b_saving; /* Set to true if we are in the middle of
saving the buffer. */
@@ -655,7 +655,7 @@ struct file_buffer {
long b_p_sts; ///< 'softtabstop'
long b_p_sts_nopaste; ///< b_p_sts saved for paste mode
char_u *b_p_sua; ///< 'suffixesadd'
- bool b_p_swf; ///< 'swapfile'
+ int b_p_swf; ///< 'swapfile'
long b_p_smc; ///< 'synmaxcol'
char_u *b_p_syn; ///< 'syntax'
long b_p_ts; ///< 'tabstop'