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

« back to all changes in this revision

Viewing changes to src/fe-text/term-terminfo.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:
339
339
        /* bold */
340
340
        if (col & 0x08)
341
341
                col |= ATTR_BOLD;
342
 
        else if (col & ATTR_BOLD)
 
342
        if (col & ATTR_BOLD)
343
343
                terminfo_set_bold();
344
344
 
345
345
        /* underline */
354
354
 
355
355
void term_move(TERM_WINDOW *window, int x, int y)
356
356
{
 
357
        if (x >= 0 && y >= 0) {
357
358
        vcmove = TRUE;
358
359
        vcx = x+window->x;
359
360
        vcy = y+window->y;
362
363
                vcx = term_width-1;
363
364
        if (vcy >= term_height)
364
365
                vcy = term_height-1;
 
366
        }
365
367
}
366
368
 
367
369
static void term_printed_text(int count)