From cdaed9221d9614c4c43103d79f8b53b916d80d86 Mon Sep 17 00:00:00 2001 From: Dan McGee Date: Thu, 1 Feb 2007 06:35:30 +0000 Subject: * Tried to clean up newline display a bit in the frontend. * Removed useless buildstring function from util.h; replaced all calls of it with list_display. * Made list_display output 2 spaces instead of 1 between each item. --- src/pacman/remove.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'src/pacman/remove.c') diff --git a/src/pacman/remove.c b/src/pacman/remove.c index 28f7411d..dba1d4e3 100644 --- a/src/pacman/remove.c +++ b/src/pacman/remove.c @@ -121,7 +121,8 @@ int pacman_remove(alpm_list_t *targets) pmpkg_t *pkg = alpm_list_getdata(i); lst = alpm_list_add(lst, strdup(alpm_pkg_get_name(pkg))); } - list_display(_("\nTargets:"), lst); + MSG(NL, "\n"); + list_display(_("Targets:"), lst); FREELIST(lst); /* get confirmation */ if(yesno(_("\nDo you want to remove these packages? [Y/n] ")) == 0) { -- cgit v1.2.3-24-g4f1b