From 7525e152b8d0b7aaecc3cd600800435ba67f98c5 Mon Sep 17 00:00:00 2001 From: Kovid Goyal Date: Mon, 15 Jun 2020 06:55:52 +0530 Subject: [PATCH] Make comment a bit better --- kitty/parser.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/kitty/parser.c b/kitty/parser.c index 87392dbd1..5ea4cf016 100644 --- a/kitty/parser.c +++ b/kitty/parser.c @@ -826,7 +826,8 @@ dispatch_dcs(Screen *screen, PyObject DUMP_UNUSED *dump_callback) { screen->pending_mode.activated_at = monotonic(); REPORT_COMMAND(screen_start_pending_mode); } else { - // ignore stop without matching start + // ignore stop without matching start, see _queue_pending_bytes() + // for how stop is detected while in pending mode. REPORT_ERROR("Pending mode stop command issued while not in pending mode"); REPORT_COMMAND(screen_stop_pending_mode); }