mirror of
https://github.com/neovim/neovim.git
synced 2025-09-20 02:08:17 +00:00
vim-patch:8.2.3460: some type casts are not needed #15868
Problem: Some type casts are not needed.
Solution: Remove unnecessary type casts. (closes vim/vim#8934)
dfa5e464d4
This commit is contained in:
@@ -398,7 +398,7 @@ void dbg_check_breakpoint(exarg_T *eap)
|
||||
// replace K_SNR with "<SNR>"
|
||||
if (debug_breakpoint_name[0] == K_SPECIAL
|
||||
&& debug_breakpoint_name[1] == KS_EXTRA
|
||||
&& debug_breakpoint_name[2] == (int)KE_SNR) {
|
||||
&& debug_breakpoint_name[2] == KE_SNR) {
|
||||
p = (char_u *)"<SNR>";
|
||||
} else {
|
||||
p = (char_u *)"";
|
||||
|
Reference in New Issue
Block a user