1
0
mirror of https://github.com/rkd77/elinks.git synced 2024-09-29 03:17:53 -04: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
};
typedef long edit_action_T;
enum menu_action {
#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 form_state *fs;
enum edit_action action_id;
edit_action_T action_id;
char *text;
int length;
enum frame_event_status status = FRAME_EVENT_REFRESH;