Home
last modified time | relevance | path

Searched refs:confirm_msg (Results 1 – 1 of 1) sorted by relevance

/vim-8.2.3635/src/
H A Dmessage.c36 static char_u *confirm_msg = NULL; // ":confirm" message variable
4025 vim_free(confirm_msg); in msg_show_console_dialog()
4026 confirm_msg = alloc(len); in msg_show_console_dialog()
4027 if (confirm_msg == NULL) in msg_show_console_dialog()
4029 *confirm_msg = NUL; in msg_show_console_dialog()
4034 *confirm_msg = '\n'; in msg_show_console_dialog()
4035 STRCPY(confirm_msg + 1, message); in msg_show_console_dialog()
4037 msgp = confirm_msg + 1 + STRLEN(message); in msg_show_console_dialog()
4063 if (confirm_msg != NULL) in display_confirm_msg()
4064 msg_puts_attr((char *)confirm_msg, HL_ATTR(HLF_M)); in display_confirm_msg()