aboutsummaryrefslogtreecommitdiff
path: root/xC.c
diff options
context:
space:
mode:
authorPřemysl Eric Janouch <p@janouch.name>2022-08-29 08:21:14 +0200
committerPřemysl Eric Janouch <p@janouch.name>2022-08-29 08:22:09 +0200
commit4ed6693f57fcfb0ad15849d7d4861b7efaf8e11a (patch)
tree9a52e810c4e24673182da1ba617b69f93a34d033 /xC.c
parentbea8d13227ec01ba325f0bab512b0c16b1fea976 (diff)
downloadxK-4ed6693f57fcfb0ad15849d7d4861b7efaf8e11a.tar.gz
xK-4ed6693f57fcfb0ad15849d7d4861b7efaf8e11a.tar.xz
xK-4ed6693f57fcfb0ad15849d7d4861b7efaf8e11a.zip
xC: erase remaining mentions of a "backlog helper"
Diffstat (limited to 'xC.c')
-rw-r--r--xC.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/xC.c b/xC.c
index 50ddbcb..d6c82b7 100644
--- a/xC.c
+++ b/xC.c
@@ -2879,7 +2879,7 @@ attr_printer_tputs (struct attr_printer *self, const char *attr)
tputs (attr, 1, printer);
else
// We shouldn't really do this but we need it to output formatting
- // to the backlog helper--it should be SGR-only
+ // to the pager--it should be SGR-only
attr_printer_filtered_puts (self->stream, attr);
}
@@ -13169,7 +13169,7 @@ toggle_bracketed_paste (bool enable)
static void
suspend_terminal (struct app_context *ctx)
{
- // Terminal can get suspended by both backlog helper and SIGTSTP handling
+ // Terminal can get suspended by both the pager and SIGTSTP handling
if (ctx->terminal_suspended++ > 0)
return;
@@ -14174,8 +14174,8 @@ setup_signal_handlers (void)
signal (SIGPIPE, SIG_IGN);
- // So that we can write to the terminal while we're running a backlog
- // helper. This is also inherited by the child so that it doesn't stop
+ // So that we can write to the terminal while we're running a pager.
+ // This is also inherited by the child so that it doesn't stop
// when it calls tcsetpgrp().
signal (SIGTTOU, SIG_IGN);