home *** CD-ROM | disk | FTP | other *** search
/ PC World 2000 February / PCWorld_2000-02_cd.bin / live / usr / X11R6 / lib / X11 / xkb / compat / japan < prev    next >
Text File  |  1999-09-03  |  676b  |  30 lines

  1. // $XConsortium: japan /main/2 1995/12/07 21:32:51 kaleb $
  2.  
  3. // Japanese keyboards need Eisu and Kana shift and 
  4. // lock keys, which are typically bound to the
  5. // second shift level for some other modifier key.
  6. // These interpretations disable the default
  7. // interpretation (which would have these keys set
  8. // the same modifier as the level one symbol).
  9.  
  10. default partial xkb_compatibility "japan"  {
  11.  
  12.     interpret.repeat= False;
  13.  
  14.     interpret Eisu_Shift+Lock {
  15.     action= NoAction();
  16.     };
  17.  
  18.     interpret Eisu_toggle+Lock {
  19.     action= NoAction();
  20.     };
  21.  
  22.     interpret Kana_Shift+Lock {
  23.     action= NoAction();
  24.     };
  25.  
  26.     interpret Kana_Lock+Lock {
  27.     action= NoAction();
  28.     };
  29. };
  30.