From 0a44c3110116998062d92088b45366594df79acc Mon Sep 17 00:00:00 2001 From: Timo Sirainen Date: Fri, 5 Jan 2001 09:43:38 +0000 Subject: [PATCH] /HELP: Set indent to 0 when printing text. syntax.pl now changes tabs to 9 spaces at the start of lines in help files. git-svn-id: http://svn.irssi.org/repos/irssi/trunk@1075 dbcabf3a-b0e7-0310-adc4-f8d773084564 --- src/fe-common/core/fe-core-commands.c | 6 +++++- syntax.pl | 2 ++ 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/src/fe-common/core/fe-core-commands.c b/src/fe-common/core/fe-core-commands.c index 53a9c48a..6d5af624 100644 --- a/src/fe-common/core/fe-core-commands.c +++ b/src/fe-common/core/fe-core-commands.c @@ -131,7 +131,11 @@ static int show_help_rec(COMMAND_REC *cmd) recvlen = read(f, tmpbuf, sizeof(tmpbuf)); ret = line_split(tmpbuf, recvlen, &str, &buffer); - if (ret > 0) printtext_string(NULL, NULL, MSGLEVEL_CLIENTCRAP, str); + if (ret > 0) { + str = g_strconcat("%|", str, NULL); + printtext_string(NULL, NULL, MSGLEVEL_CLIENTCRAP, str); + g_free(str); + } } while (ret > 0); line_split_free(buffer); diff --git a/syntax.pl b/syntax.pl index 0694ea22..39a600eb 100755 --- a/syntax.pl +++ b/syntax.pl @@ -34,6 +34,8 @@ while () { $DATARIVI = $SYNTAX; } elsif ($DATARIVI =~ /^\S+/) { chomp $DATARIVI if ($data[$count+1] =~ /^\S+/); + } else { + $DATARIVI =~ s/^\t/ / while ($DATARIVI =~ /^\t/); } $count++; }