mirror of
https://github.com/fergalmoran/ladybird.git
synced 2025-12-25 02:40:49 +00:00
LibLine: Ignore interrupts unless actively editing
It does not make much sense to receive an interrupt and process it *much later*. Also patches Userland/js to only create exceptions while some code is actually running.
This commit is contained in:
committed by
Andreas Kling
parent
8b195d1211
commit
7ecf29f206
@@ -124,6 +124,8 @@ void Editor::stylize(const Span& span, const Style& style)
|
||||
|
||||
String Editor::get_line(const String& prompt)
|
||||
{
|
||||
m_is_editing = true;
|
||||
|
||||
set_prompt(prompt);
|
||||
reset();
|
||||
set_origin();
|
||||
@@ -139,6 +141,7 @@ String Editor::get_line(const String& prompt)
|
||||
fflush(stdout);
|
||||
auto string = String::copy(m_buffer);
|
||||
m_buffer.clear();
|
||||
m_is_editing = false;
|
||||
return string;
|
||||
}
|
||||
char keybuf[16];
|
||||
|
||||
Reference in New Issue
Block a user