From 7de72229a55300a7a22bfe4a4da43207f3fe475f Mon Sep 17 00:00:00 2001 From: Roy Marples Date: Mon, 24 Dec 2007 13:55:40 +0000 Subject: Remove forces spaces from ebracket and ensure ok matches eend output. --- src/libeinfo.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/libeinfo.c') diff --git a/src/libeinfo.c b/src/libeinfo.c index bc03fa3e..80338ad6 100644 --- a/src/libeinfo.c +++ b/src/libeinfo.c @@ -778,7 +778,7 @@ static void _eend (FILE * restrict fp, int col, einfo_color_t color, if (! msg) return; - cols = get_term_columns (fp) - (strlen (msg) + 5); + cols = get_term_columns (fp) - (strlen (msg) + 3); /* cons25 is special - we need to remove one char, otherwise things * do not align properly at all. */ @@ -793,14 +793,14 @@ static void _eend (FILE * restrict fp, int col, einfo_color_t color, cols--; if (cols > 0 && colour_terminal (fp)) { - fprintf (fp, "%s%s %s[ %s%s %s]%s\n", up, tgoto (goto_column, 0, cols), + fprintf (fp, "%s%s %s[%s%s%s]%s\n", up, tgoto (goto_column, 0, cols), ecolor (ECOLOR_BRACKET), ecolor (color), msg, ecolor (ECOLOR_BRACKET), ecolor (ECOLOR_NORMAL)); } else { if (col > 0) for (i = 0; i < cols - col; i++) fprintf (fp, " "); - fprintf (fp, " [ %s ]\n", msg); + fprintf (fp, " [%s]\n", msg); } } -- cgit v1.2.3