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

Diff for /src/usr.bin/mg/basic.c between version 1.6 and 1.7

version 1.6, 2001/05/23 22:20:34 version 1.7, 2002/02/08 21:21:11
Line 341 
Line 341 
  * These functions are provided for compatibility with Gosling's Emacs. They   * These functions are provided for compatibility with Gosling's Emacs. They
  * are used to scroll the display up (or down) one line at a time.   * are used to scroll the display up (or down) one line at a time.
  */   */
 #ifdef GOSMACS  int
 void  
 forw1page(f, n)  forw1page(f, n)
         int f, n;          int f, n;
 {  {
Line 352 
Line 351 
                 f = FFUNIV;                  f = FFUNIV;
         }          }
         forwpage(f | FFRAND, n);          forwpage(f | FFRAND, n);
           return TRUE;
 }  }
   
 void  int
 back1page(f, n)  back1page(f, n)
         int f, n;          int f, n;
 {  {
Line 364 
Line 364 
                 f = FFUNIV;                  f = FFUNIV;
         }          }
         backpage(f | FFRAND, n);          backpage(f | FFRAND, n);
           return TRUE;
 }  }
 #endif  
   
 /*  /*
  * Page the other window. Check to make sure it exists, then   * Page the other window. Check to make sure it exists, then

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