diff options
author | Justin M. Keyes <justinkz@gmail.com> | 2019-04-24 11:23:32 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-04-24 11:23:32 +0200 |
commit | 24a9516ff41b69e649f0dac131ad20efbe19eb4b (patch) | |
tree | 3703fe68b2381407524033959e3e7721d7a7dbdc /src/nvim/buffer.c | |
parent | 8c6f5b7f9268087bce8c136e81c1631a8f87abbe (diff) | |
parent | 37c7c964aef5f0d47c0bd0fb8abb15a5407e4b27 (diff) | |
download | rneovim-24a9516ff41b69e649f0dac131ad20efbe19eb4b.tar.gz rneovim-24a9516ff41b69e649f0dac131ad20efbe19eb4b.tar.bz2 rneovim-24a9516ff41b69e649f0dac131ad20efbe19eb4b.zip |
Merge #9906 from janlazo/vim-8.0.0647
vim-patch:8.0.{647,768,797,1085,1092,1107,1133,1408}
Diffstat (limited to 'src/nvim/buffer.c')
-rw-r--r-- | src/nvim/buffer.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer.c b/src/nvim/buffer.c index d628c517bb..c8ed7d0b37 100644 --- a/src/nvim/buffer.c +++ b/src/nvim/buffer.c @@ -5211,8 +5211,8 @@ char_u *buf_spname(buf_T *buf) return (char_u *)_(msg_qflist); } } - /* There is no _file_ when 'buftype' is "nofile", b_sfname - * contains the name as specified by the user */ + // There is no _file_ when 'buftype' is "nofile", b_sfname + // contains the name as specified by the user. if (bt_nofile(buf)) { if (buf->b_sfname != NULL) { return buf->b_sfname; |