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

Diff for /src/usr.bin/mg/extend.c between version 1.59 and 1.60

version 1.59, 2015/03/17 18:08:52 version 1.60, 2015/03/19 21:22:15
Line 5 
Line 5 
 /*  /*
  *      Extended (M-X) commands, rebinding, and startup file processing.   *      Extended (M-X) commands, rebinding, and startup file processing.
  */   */
 #include "chrdef.h"  
 #include "def.h"  
 #include "kbd.h"  
 #include "funmap.h"  
   
   #include <sys/queue.h>
 #include <sys/types.h>  #include <sys/types.h>
 #include <ctype.h>  #include <ctype.h>
 #include <limits.h>  #include <limits.h>
   #include <signal.h>
   #include <stdio.h>
   #include <stdlib.h>
   #include <string.h>
   
   #include "chrdef.h"
   #include "def.h"
   #include "funmap.h"
   #include "kbd.h"
   #include "key.h"
 #include "macro.h"  #include "macro.h"
   
 #include "key.h"  
 #ifndef BINDKEY  #ifndef BINDKEY
 #define BINDKEY                 /* bindkey is used by FKEYS startup code */  #define BINDKEY                 /* bindkey is used by FKEYS startup code */
 #endif /* !BINDKEY */  #endif /* !BINDKEY */

Legend:
Removed from v.1.59  
changed lines
  Added in v.1.60