aboutsummaryrefslogtreecommitdiff
path: root/src/nvim/terminal.c
diff options
context:
space:
mode:
authorJustin M. Keyes <justinkz@gmail.com>2025-03-08 12:28:15 -0800
committerGitHub <noreply@github.com>2025-03-08 12:28:15 -0800
commit05b9daa1e6e8d045f691b74441ebbc01f69a56aa (patch)
tree366eae4b7cdb23e6b9af60da4606b97fce6ff5c1 /src/nvim/terminal.c
parentd5ff0aff27438829b0810cc70dec9e63cb53c1db (diff)
downloadrneovim-05b9daa1e6e8d045f691b74441ebbc01f69a56aa.tar.gz
rneovim-05b9daa1e6e8d045f691b74441ebbc01f69a56aa.tar.bz2
rneovim-05b9daa1e6e8d045f691b74441ebbc01f69a56aa.zip
refactor(multiqueue): rename multiqueue_new_parent #32767
Diffstat (limited to 'src/nvim/terminal.c')
-rw-r--r--src/nvim/terminal.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/nvim/terminal.c b/src/nvim/terminal.c
index 2ca71e6dde..f4acfb486c 100644
--- a/src/nvim/terminal.c
+++ b/src/nvim/terminal.c
@@ -498,7 +498,7 @@ void terminal_open(Terminal **termpp, buf_T *buf, TerminalOptions opts)
// can create an infinite loop (#32753).
// This queue is never processed directly: when the terminal is refreshed, all
// events from this queue are copied back onto the main event queue.
- term->pending.events = multiqueue_new_parent(NULL, NULL);
+ term->pending.events = multiqueue_new(NULL, NULL);
aco_save_T aco;
aucmd_prepbuf(&aco, buf);