aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/buffer_defs.h
diff options
context:
space:
mode:
authorLewis Russell <lewis6991@gmail.com>2021-04-05 11:16:44 +0100
committerGitHub <noreply@github.com>2021-04-05 06:16:44 -0400
commit9fbeaf7771db1855414099c75b75793be8776032 (patch)
tree3553aaaf9ce37dd63ba6cc0fff25c82706ff86ff /src/nvim/buffer_defs.h
parent9b2d4ff625c59961288dfb2708cc94516667b2ad (diff)
downloadrneovim-9fbeaf7771db1855414099c75b75793be8776032.tar.gz
rneovim-9fbeaf7771db1855414099c75b75793be8776032.tar.bz2
rneovim-9fbeaf7771db1855414099c75b75793be8776032.zip
vim-patch:8.1.2205: sign entry structure has confusing name (#14289)
Problem: Sign entry structure has confusing name. Solution: Rename signlist_T to sign_entry_T and prefix se_ to the fields.
Diffstat (limited to 'src/nvim/buffer_defs.h')
-rw-r--r--src/nvim/buffer_defs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/nvim/buffer_defs.h b/src/nvim/buffer_defs.h
index b57e58929e..dd24db910e 100644
--- a/src/nvim/buffer_defs.h
+++ b/src/nvim/buffer_defs.h
@@ -110,7 +110,7 @@ typedef uint16_t disptick_T; // display tick type
#include "nvim/regexp_defs.h"
// for synstate_T (needs reg_extmatch_T, win_T, buf_T)
#include "nvim/syntax_defs.h"
-// for signlist_T
+// for sign_entry_T
#include "nvim/sign_defs.h"
#include "nvim/os/fs_defs.h" // for FileID
@@ -848,7 +848,7 @@ struct file_buffer {
// normally points to this, but some windows
// may use a different synblock_T.
- signlist_T *b_signlist; // list of signs to draw
+ sign_entry_T *b_signlist; // list of placed signs
int b_signcols_max; // cached maximum number of sign columns
int b_signcols; // last calculated number of sign columns