diff options
Diffstat (limited to 'src/nvim/message.c')
-rw-r--r-- | src/nvim/message.c | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/src/nvim/message.c b/src/nvim/message.c index bcfff90d7d..7ca82c2878 100644 --- a/src/nvim/message.c +++ b/src/nvim/message.c @@ -67,7 +67,6 @@ static char_u *confirm_msg_tail; /* tail of confirm_msg */ MessageHistoryEntry *first_msg_hist = NULL; MessageHistoryEntry *last_msg_hist = NULL; -char *msg_first_ignored_err = NULL; static int msg_hist_len = 0; static FILE *verbose_fd = NULL; @@ -505,9 +504,6 @@ int emsg(const char_u *s_) if (cause_errthrow((char_u *)s, severe, &ignore) == true) { if (!ignore) { did_emsg = true; - if (msg_first_ignored_err == NULL) { - msg_first_ignored_err = xstrdup(s); - } } return true; } |