diff options
author | Roy Marples <roy@marples.name> | 2008-11-26 10:46:33 +0000 |
---|---|---|
committer | Roy Marples <roy@marples.name> | 2008-11-26 10:46:33 +0000 |
commit | 5403e703131fcf6f254d62c40efcbc224e3acc5a (patch) | |
tree | d7a37d53c316558de9da058ed75ec7e359e829ec /src/libeinfo | |
parent | fe12134a5b8c37ae6e1b7316dd320830d71b2e57 (diff) |
Save more screen space by removing the space befor the * for einfo and friends. Also remove the leading space before ... for ebegin.
Diffstat (limited to 'src/libeinfo')
-rw-r--r-- | src/libeinfo/libeinfo.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/libeinfo/libeinfo.c b/src/libeinfo/libeinfo.c index 12ca3688..cef06502 100644 --- a/src/libeinfo/libeinfo.c +++ b/src/libeinfo/libeinfo.c @@ -643,7 +643,7 @@ _einfo(FILE *f, ECOLOR color, const char *EINFO_RESTRICT fmt, va_list va) fprintf(f, "\n"); if (_eprefix) fprintf(f, "%s%s%s|", _ecolor(f, color), _eprefix, _ecolor(f, ECOLOR_NORMAL)); - fprintf(f, " %s*%s ", _ecolor(f, color), _ecolor(f, ECOLOR_NORMAL)); + fprintf(f, "%s*%s ", _ecolor(f, color), _ecolor(f, ECOLOR_NORMAL)); retval += _eindent(f); va_copy(ap, va); retval += vfprintf(f, fmt, ap) + 3; @@ -800,7 +800,7 @@ ebegin(const char *EINFO_RESTRICT fmt, ...) va_start(ap, fmt); retval = _einfovn(fmt, ap); va_end(ap); - retval += printf(" ..."); + retval += printf("..."); if (colour_terminal(stdout)) retval += printf("\n"); LASTCMD("ebegin"); @@ -1029,7 +1029,7 @@ ebeginv(const char *EINFO_RESTRICT fmt, ...) va_start(ap, fmt); retval = _einfovn(fmt, ap); - retval += printf(" ..."); + retval += printf("..."); if (colour_terminal(stdout)) retval += printf("\n"); va_end(ap); |