From 48f8f521b16646166c1bc7183ad60b227fc2eea1 Mon Sep 17 00:00:00 2001 From: Aurelien Foret Date: Wed, 6 Apr 2005 20:59:13 +0000 Subject: [PATCH] reworked MSG and ERR outputs --- src/pacman/add.c | 2 +- src/pacman/pacman.c | 14 +++++++++----- 2 files changed, 10 insertions(+), 6 deletions(-) diff --git a/src/pacman/add.c b/src/pacman/add.c index 0cff3937..7e45550f 100644 --- a/src/pacman/add.c +++ b/src/pacman/add.c @@ -110,7 +110,7 @@ int pacman_add(list_t *targets) MSG(NL, ":: %s\n", (char *)alpm_list_getdata(i)); } alpm_list_free(data); - MSG(NL, "\nerrors occurred, no packages were upgraded.\n\n"); + MSG(NL, "\nerrors occurred, no packages were upgraded.\n"); break; default: break; diff --git a/src/pacman/pacman.c b/src/pacman/pacman.c index 7f13f39e..140500a5 100644 --- a/src/pacman/pacman.c +++ b/src/pacman/pacman.c @@ -183,9 +183,12 @@ int main(int argc, char *argv[]) case PM_OP_DEPTEST: ret = pacman_deptest(pm_targets); break; case PM_OP_MAIN: ret = 0; break; default: - ERR(NL, "no operation specified (use -h for help)\n\n"); + ERR(NL, "no operation specified (use -h for help)\n"); ret = 1; } + if(ret != 0) { + MSG(NL, "\n"); + } cleanup(ret); /* not reached */ @@ -196,7 +199,7 @@ void cleanup(int signum) { list_t *lp; - /* free pm library resources */ + /* free alpm library resources */ if(alpm_release() == -1) { ERR(NL, "%s\n", alpm_strerror(pm_errno)); } @@ -439,7 +442,7 @@ int parseargs(int argc, char **argv) } if(pmo_op == 0) { - ERR(NL, "only one operation may be used at a time\n\n"); + ERR(NL, "only one operation may be used at a time\n"); return(1); } @@ -477,7 +480,7 @@ void usage(int op, char *myname) printf(" %s {-F --freshen} [options] \n", myname); printf(" %s {-Q --query} [options] [package]\n", myname); printf(" %s {-S --sync} [options] [package]\n", myname); - printf("\nuse '%s --help' with other options for more syntax\n\n", myname); + printf("\nuse '%s --help' with other options for more syntax\n", myname); } else { if(op == PM_OP_ADD) { printf("usage: %s {-A --add} [options] \n", myname); @@ -543,7 +546,8 @@ void version() printf("/ _.-' .-. .-. .-. Copyright (C) 2002-2005 Judd Vinet \n"); printf("\\ '-. '-' '-' '-' \n"); printf(" '--' This program may be freely redistributed under\n"); - printf(" the terms of the GNU General Public License\n\n"); + printf(" the terms of the GNU General Public License\n"); + printf("\n"); } /*