mirror of
https://github.com/MidnightCommander/mc
synced 2024-12-22 20:36:50 +03:00
Remove replace_prepare_t type and use defined constants for use just one type (int) in functions
Signed-off-by: Slava Zanko <slavazanko@gmail.com>
This commit is contained in:
parent
fb7b01eeb9
commit
e1edfd7c93
@ -43,6 +43,10 @@
|
||||
|
||||
/*** file scope macro definitions ****************************************************************/
|
||||
|
||||
#define REPLACE_PREPARE_T_NOTHING_SPECIAL -1
|
||||
#define REPLACE_PREPARE_T_REPLACE_FLAG -2
|
||||
#define REPLACE_PREPARE_T_ESCAPE_SEQ -3
|
||||
|
||||
/*** file scope type declarations ****************************************************************/
|
||||
|
||||
typedef enum
|
||||
@ -54,12 +58,6 @@ typedef enum
|
||||
REPLACE_T_LOW_TRANSFORM = 8
|
||||
} replace_transform_type_t;
|
||||
|
||||
typedef enum
|
||||
{
|
||||
REPLACE_PREPARE_T_NOTHING_SPECIAL = -1,
|
||||
REPLACE_PREPARE_T_REPLACE_FLAG = -2,
|
||||
REPLACE_PREPARE_T_ESCAPE_SEQ = -3,
|
||||
} replace_prepare_t;
|
||||
|
||||
/*** file scope variables ************************************************************************/
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user