mirror of
https://github.com/rkd77/elinks.git
synced 2024-09-20 01:46:15 -04:00
try_mark_key: Reject non-ASCII keys as mark characters.
The previous version used only the low 8 bits of the key code. This one arranges for the whole key to be rejected if it's not ASCII. Perhaps the modifiers should be checked too, but I'm not changing that now.
This commit is contained in:
parent
2648fd57e4
commit
f97a392c01
@ -637,7 +637,19 @@ enum frame_event_status
|
||||
try_mark_key(struct session *ses, struct document_view *doc_view,
|
||||
struct term_event *ev)
|
||||
{
|
||||
unsigned char mark = get_kbd_key(ev);
|
||||
unsigned char mark;
|
||||
|
||||
/* set_mark and goto_mark allow only a subset of the ASCII
|
||||
* character repertoire as mark characters. If get_kbd_key(ev)
|
||||
* is something else (i.e. a special key or a non-ASCII
|
||||
* character), map it to an ASCII character that the functions
|
||||
* will not accept, so the results are consistent.
|
||||
* When CONFIG_UTF_8 is not defined, this assumes that codes
|
||||
* 0 to 0x7F in all codepages match ASCII. */
|
||||
if (get_kbd_key(ev) >= 0 && get_kbd_key(ev) <= 0x7F)
|
||||
mark = get_kbd_key(ev);
|
||||
else
|
||||
mark = 0;
|
||||
|
||||
switch (ses->kbdprefix.mark) {
|
||||
case KP_MARK_NOTHING:
|
||||
|
Loading…
Reference in New Issue
Block a user