* editkeys.c: When typing literal characters after C-q, allow
the alphabetic characters to input ASCII control characters.
Этот коммит содержится в:
родитель
6d3226c4e7
Коммит
fb221cb8b0
@ -1,3 +1,8 @@
|
||||
2005-07-18 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* editkeys.c: When typing literal characters after C-q, allow
|
||||
the alphabetic characters to input ASCII control characters.
|
||||
|
||||
2005-07-06 Roland Illig <roland.illig@gmx.de>
|
||||
|
||||
* edit.h: Added missing #include <stdio.h>.
|
||||
|
@ -228,9 +228,9 @@ edit_translate_key (WEdit *edit, long x_key, int *cmd, int *ch)
|
||||
#endif
|
||||
|
||||
if (x_key == XCTRL ('q')) {
|
||||
char_for_insertion =
|
||||
char_for_insertion = ascii_alpha_to_cntrl (
|
||||
edit_raw_key_query (_(" Insert Literal "),
|
||||
_(" Press any key: "), 0);
|
||||
_(" Press any key: "), 0));
|
||||
goto fin;
|
||||
}
|
||||
if (x_key == XCTRL ('a')
|
||||
|
Загрузка…
Ссылка в новой задаче
Block a user