~ubuntu-branches/ubuntu/hoary/eterm/hoary

« back to all changes in this revision

Viewing changes to src/screen.c

  • Committer: Bazaar Package Importer
  • Author(s): Laurence J. Lane
  • Date: 2004-05-04 09:30:14 UTC
  • Revision ID: james.westby@ubuntu.com-20040504093014-1028s5aqsnrhh2gu
Tags: 0.9.2-8
src/startup.c: disable use of ~/user.cfg, patch provdided by Michael
Jennings. Thanks.

Show diffs side-by-side

added added

removed removed

Lines of Context:
1183
1183
          }
1184
1184
          blank_line(&(screen.text[row][TERM_WINDOW_GET_REPORTED_COLS() - count]), &(screen.rend[row][TERM_WINDOW_GET_REPORTED_COLS() - count]), count, rstyle);
1185
1185
          screen.text[row][TERM_WINDOW_GET_REPORTED_COLS()] -= count;
1186
 
          if (((int) (char) screen.text[row][TERM_WINDOW_GET_REPORTED_COLS()]) < 0)
 
1186
          if (((signed char) screen.text[row][TERM_WINDOW_GET_REPORTED_COLS()]) < 0)
1187
1187
              screen.text[row][TERM_WINDOW_GET_REPORTED_COLS()] = 0;
1188
1188
          break;
1189
1189
    }