Subversion Repositories HelenOS

Compare Revisions

Ignore whitespace Rev 3932 → Rev 3933

/trunk/uspace/srv/kbd/ctl/pc.c
59,7 → 59,7
 
key = scanmap_simple[scancode];
if (key != 0)
kbd_push_ev(type, key, 0);
kbd_push_ev(type, key);
}
 
static int scanmap_simple[128] = {
/trunk/uspace/srv/kbd/ctl/stty.c
212,7 → 212,7
default: ds = ds_start; return;
}
 
kbd_push_ev(KE_PRESS, KC_ESCAPE, 0);
kbd_push_ev(KE_PRESS, KC_ESCAPE);
}
 
static void parse_ds_e1(int scancode)
252,7 → 252,7
 
key = map[scancode];
if (key != 0)
kbd_push_ev(KE_PRESS, key, 0);
kbd_push_ev(KE_PRESS, key);
}
 
 
/trunk/uspace/srv/kbd/ctl/sun.c
65,7 → 65,7
 
key = scanmap_simple[scancode];
if (key != 0)
kbd_push_ev(type, key, 0);
kbd_push_ev(type, key);
}
 
/** Primary meaning of scancodes. */
/trunk/uspace/srv/kbd/ctl/gxe_fb.c
202,7 → 202,7
default: ds = ds_start; return;
}
 
kbd_push_ev(KE_PRESS, KC_ESCAPE, 0);
kbd_push_ev(KE_PRESS, KC_ESCAPE);
}
 
static void parse_ds_e1(int scancode)