~ubuntu-branches/ubuntu/oneiric/irssi/oneiric

« back to all changes in this revision

Viewing changes to src/fe-text/statusbar.c

  • Committer: Bazaar Package Importer
  • Author(s): Christian Bjälevik
  • Date: 2007-04-28 02:52:01 UTC
  • mfrom: (1.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20070428025201-2c4swxnpn4wr7fpg
Tags: 0.8.11-0ubuntu1
* New upstream release:
  - http://www.irssi.org/news/ChangeLog
* debian/{control,compat}:
  - Bump Standards.
* debian/patches/00list:
  - Disable 05upgrade-check-binary.patch, applied upstream.
  - Disable 08doublefree.patch, applied upstream.

Show diffs side-by-side

added added

removed removed

Lines of Context:
732
732
                        /* they're forcing us smaller than minimum size.. */
733
733
                        len = format_real_length(tmpstr, item->size);
734
734
                        tmpstr[len] = '\0';
735
 
                } else {
 
735
                }
736
736
                        /* make sure the str is big enough to fill the
737
737
                           requested size, so it won't corrupt screen */
738
738
                        len = format_get_length(tmpstr);
748
748
                                g_free(tmpstr);
749
749
                                tmpstr = tmpstr2;
750
750
                        }
751
 
                }
752
751
 
753
752
                tmpstr2 = update_statusbar_bg(tmpstr, item->bar->color);
754
753
                gui_printtext(item->xpos, item->bar->real_ypos, tmpstr2);