[BACK]Return to display.c CVS log [TXT][DIR] Up to [local] / src / usr.bin / talk

Diff for /src/usr.bin/talk/display.c between version 1.6 and 1.7

version 1.6, 1999/03/23 17:00:38 version 1.7, 2000/12/30 06:27:48
Line 52 
Line 52 
 xwin_t  his_win;  xwin_t  his_win;
 WINDOW  *line_win;  WINDOW  *line_win;
   
   #undef isprint
   #define isprint(n) ((unsigned char)(n)>31)
   
 int     curses_initialized = 0;  int     curses_initialized = 0;
   
 /*  /*
Line 157 
Line 160 
                         cch = (*text & 63) + 64;                          cch = (*text & 63) + 64;
                         waddch(win->x_win, cch);                          waddch(win->x_win, cch);
                 } else                  } else
                         waddch(win->x_win, *text);                          waddch(win->x_win, (unsigned char)(*text));
                 getyx(win->x_win, win->x_line, win->x_col);                  getyx(win->x_win, win->x_line, win->x_col);
                 text++;                  text++;
         }          }

Legend:
Removed from v.1.6  
changed lines
  Added in v.1.7