1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-11-04 08:17:17 -05:00

[kbd] enum edit_action -> edit_action_T

This commit is contained in:
Witold Filipczyk 2022-01-28 18:02:14 +01:00
parent 7ea1e0b80a
commit f1412534ed
2 changed files with 3 additions and 1 deletions

View File

@ -75,6 +75,8 @@ enum edit_action {
EDIT_ACTIONS EDIT_ACTIONS
}; };
typedef long edit_action_T;
enum menu_action { enum menu_action {
#include "config/actions-menu.inc" #include "config/actions-menu.inc"

View File

@ -1495,7 +1495,7 @@ field_op(struct session *ses, struct document_view *doc_view,
{ {
struct el_form_control *fc; struct el_form_control *fc;
struct form_state *fs; struct form_state *fs;
enum edit_action action_id; edit_action_T action_id;
char *text; char *text;
int length; int length;
enum frame_event_status status = FRAME_EVENT_REFRESH; enum frame_event_status status = FRAME_EVENT_REFRESH;