Issue #24266: Cancel history search mode with Ctrl+C in Readline 7
This commit is contained in:
parent
e46487b133
commit
d6990d221b
|
@ -94,6 +94,9 @@ Core and Builtins
|
|||
Library
|
||||
-------
|
||||
|
||||
- Issue #24266: Ctrl+C during Readline history search now cancels the search
|
||||
mode when compiled with Readline 7.
|
||||
|
||||
- Issue #26560: Avoid potential ValueError in BaseHandler.start_response.
|
||||
Initial patch by Peter Inglesby.
|
||||
|
||||
|
|
|
@ -1140,6 +1140,9 @@ readline_until_enter_or_signal(const char *prompt, int *signal)
|
|||
#endif
|
||||
if (s < 0) {
|
||||
rl_free_line_state();
|
||||
#if defined(RL_READLINE_VERSION) && RL_READLINE_VERSION >= 0x0700
|
||||
rl_callback_sigcleanup();
|
||||
#endif
|
||||
rl_cleanup_after_signal();
|
||||
rl_callback_handler_remove();
|
||||
*signal = 1;
|
||||
|
|
Loading…
Reference in New Issue