home *** CD-ROM | disk | FTP | other *** search
/ CP/M / CPM_CDROM.iso / simtel / emacs / src / metab.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-07  |  512 b   |  32 lines

  1.  
  2. /* #define OWNER */
  3. #include "metab.h"
  4.  
  5. #undef BI
  6. #undef OV
  7. #define OV( a, b, c ) /* */
  8. #define BI( a, b ) a, b,
  9. KEYTAB    keytab[] =
  10. {
  11. #include "mapping.h"
  12.     -1, 0
  13. }
  14. ;
  15.  
  16. int NKEYTAB = (sizeof(keytab)/sizeof(keytab[0]));
  17.  
  18. #undef BI
  19. #undef OV
  20. #define OV( a, b, c ) a, b, c,
  21. #define BI( a, b ) /* */
  22. struct OVERTAB overtab[] =
  23. {
  24. #include "mapping.h"
  25.     -1, 0, 0,
  26.     -1, 0, 0,
  27.     -1, 0, 0,
  28.     -1, 0, 0,
  29.     -1, 0, 0
  30. };
  31. int NOVERTAB = (sizeof(overtab) / sizeof(overtab[0]));
  32.