Subversion Repositories HelenOS

Rev

Rev 3882 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 3882 Rev 3905
Line 190... Line 190...
190
   
190
   
191
        if ((scancode & 0x80) != 0x80) {
191
        if ((scancode & 0x80) != 0x80) {
192
            int key = lchars[scancode & 0x7f];
192
            int key = lchars[scancode & 0x7f];
193
           
193
           
194
            if (key != SPECIAL)
194
            if (key != SPECIAL)
195
                keybuffer_push(keybuffer, key);
195
                keybuffer_push0(keybuffer, key);
196
        }
196
        }
197
    }
197
    }
198
   
198
   
199
    return 1;
199
    return 1;
200
}
200
}