From 7b7b235ce86d50b02bb810a9db98bb65605ff0db Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Mon, 29 Oct 2001 20:44:45 +0000 Subject: [PATCH] forgot to define TI_rep for repeat() command. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1944 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-text/terminfo-core.c | 3 +++ 1 file changed, 3 insertions(+) diff --git a/src/fe-text/terminfo-core.c b/src/fe-text/terminfo-core.c index 6e3008de..fdacb6ee 100644 --- a/src/fe-text/terminfo-core.c +++ b/src/fe-text/terminfo-core.c @@ -83,6 +83,9 @@ static TERMINFO_REC tcaps[] = { /* Clearing to end of line */ { "el", "ce", CAP_TYPE_STR, &temp_term.TI_el }, + /* Repeating character */ + { "rep", "rp", CAP_TYPE_STR, &temp_term.TI_rep }, + /* Colors */ { "sgr0", "me", CAP_TYPE_STR, &temp_term.TI_sgr0 }, { "smul", "us", CAP_TYPE_STR, &temp_term.TI_smul },