summaryrefslogtreecommitdiff
path: root/src/pacman/list.c
diff options
context:
space:
mode:
authorAaron Griffin <aaron@archlinux.org>2006-11-22 04:53:10 +0000
committerAaron Griffin <aaron@archlinux.org>2006-11-22 04:53:10 +0000
commit54691771831c97c7366bf8ee7c54da3952c22120 (patch)
tree6db658673d8009bb798c7c053621d431d171c891 /src/pacman/list.c
parent3c7f616805b4e7b29a1b5ef8cf218627c9da34bd (diff)
Removed global maxcols - it is looked up on the fly now, so the progress bar is
resized. Also used ioctl in place of the COLUMNS env variable
Diffstat (limited to 'src/pacman/list.c')
-rw-r--r--src/pacman/list.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pacman/list.c b/src/pacman/list.c
index 0c271978..c95e8f3d 100644
--- a/src/pacman/list.c
+++ b/src/pacman/list.c
@@ -28,8 +28,6 @@
#include "util.h"
#include "list.h"
-extern int maxcols;
-
static list_t *list_last(list_t *list);
list_t *list_new()
@@ -127,6 +125,7 @@ void list_display(const char *title, list_t *list)
if(list) {
for(lp = list, cols = len; lp; lp = lp->next) {
int s = strlen((char *)lp->data)+1;
+ unsigned int maxcols = getcols();
if(s+cols >= maxcols) {
int i;
cols = len;
@@ -155,6 +154,7 @@ void pmlist_display(const char *title, pmlist_t *list)
if(list) {
for(lp = list, cols = len; lp; lp = alpm_list_next(lp)) {
int s = strlen(alpm_list_getdata(lp))+1;
+ unsigned int maxcols = getcols();
if(s+cols >= maxcols) {
int i;
cols = len;