1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-10-01 03:36:26 -04:00

add_accesskey_to_string: Use KBD_MOD_NONE, rather than plain 0.

This commit is contained in:
Kalle Olavi Niemitalo 2006-08-12 14:53:28 +03:00 committed by Kalle Olavi Niemitalo
parent f3b04b8645
commit 8be5ed9749

View File

@ -187,7 +187,7 @@ void add_keystroke_to_string(struct string *str, struct term_event_keyboard *kbd
* converted from unicode_val_T to that. \
* #ifdef CONFIG_UTF_8, the code is correct. */ \
kbd.key = accesskey; \
kbd.modifier = 0; \
kbd.modifier = KBD_MOD_NONE; \
add_keystroke_to_string(str, &kbd, 0); \
} while (0)