minor fixes
authorPierre Habouzit <madcoder@debian.org>
Sat, 11 Aug 2007 09:45:49 +0000 (11:45 +0200)
committerPierre Habouzit <madcoder@debian.org>
Sat, 11 Aug 2007 09:45:49 +0000 (11:45 +0200)
Signed-off-by: Pierre Habouzit <madcoder@debian.org>
lib-ui/color.c
pager.c

index 584c113..87a8042 100644 (file)
@@ -602,10 +602,8 @@ _mutt_parse_color (BUFFER * buf, BUFFER * s, BUFFER * err,
   else
     ColorDefs[object] = fgbgattr_to_color (fg, bg, attr);
 
-#ifdef HAVE_BKGDSET
   if (object == MT_COLOR_NORMAL && !option (OPTNOCURSES) && has_colors ())
     BKGDSET (MT_COLOR_NORMAL);
-#endif
 
   return (r);
 }
diff --git a/pager.c b/pager.c
index 5f93d96..78c13a9 100644 (file)
--- a/pager.c
+++ b/pager.c
@@ -1246,9 +1246,7 @@ display_line (FILE * f, off_t *last_pos, struct line_t **lineInfo, int n,
       def_color = ColorDefs[(*lineInfo)[m].type];
 
     attrset (def_color);
-#ifdef HAVE_BKGDSET
     bkgdset (def_color | ' ');
-#endif
   }
   addch ('\n');