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

Diff for /src/usr.bin/mg/tty.c between version 1.3 and 1.4

version 1.3, 2000/02/27 05:52:32 version 1.4, 2000/03/03 19:31:27
Line 115 
Line 115 
 }  }
   
 /*  /*
    * Re-initialize the terminal when the editor is resumed.
    * The keypad_xmit doesn't really belong here but...
    */
   ttreinit() {
           if (enter_ca_mode)
                   putpad(enter_ca_mode, 1);       /* enter application mode */
           if (keypad_xmit)
                   putpad(keypad_xmit, 1);         /* turn on keypad */
   
           setttysize();
   }
   
   /*
  * Clean up the terminal, in anticipation of   * Clean up the terminal, in anticipation of
  * a return to the command interpreter. This is a no-op   * a return to the command interpreter. This is a no-op
  * on the ANSI display. On the SCALD display, it sets the   * on the ANSI display. On the SCALD display, it sets the

Legend:
Removed from v.1.3  
changed lines
  Added in v.1.4