mirror of
https://github.com/neovim/neovim.git
synced 2025-09-30 15:08:35 +00:00
refactor: remove redundant const char * casts
This commit is contained in:
@@ -2699,7 +2699,7 @@ int stuff_inserted(int c, long count, int no_esc)
|
||||
}
|
||||
|
||||
do {
|
||||
stuffReadbuff((const char *)ptr);
|
||||
stuffReadbuff(ptr);
|
||||
// A trailing "0" is inserted as "<C-V>048", "^" as "<C-V>^".
|
||||
if (last) {
|
||||
stuffReadbuff(last == '0' ? "\026\060\064\070" : "\026^");
|
||||
|
Reference in New Issue
Block a user