aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
diff options
context:
space:
mode:
authorBjörn Linse <bjorn.linse@gmail.com>2016-08-28 13:01:33 +0200
committerBjörn Linse <bjorn.linse@gmail.com>2017-06-24 11:09:10 +0200
commit14e19b8aaf458270ec94deb941be8ee78706851a (patch)
tree2b1b3046f245a8332f50246ab9d0da216dd05922 /src/nvim/buffer_defs.h
parent53cf88c27bcea1099d48a1ca6dc0a4d7c44e0a98 (diff)
downloadrneovim-14e19b8aaf458270ec94deb941be8ee78706851a.tar.gz
rneovim-14e19b8aaf458270ec94deb941be8ee78706851a.tar.bz2
rneovim-14e19b8aaf458270ec94deb941be8ee78706851a.zip
kbtree: eliminate unneccesary heap allocation
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r--src/nvim/buffer_defs.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h
index adced27f58..c027dc4512 100644
--- a/src/nvim/buffer_defs.h
+++ b/src/nvim/buffer_defs.h
@@ -760,7 +760,7 @@ struct file_buffer {
int b_mapped_ctrl_c; // modes where CTRL-C is mapped
- bufhl_info_T *b_bufhl_info; // buffer stored highlights
+ bufhl_info_T b_bufhl_info; // buffer stored highlights
};
/*