mirror of
https://github.com/troglobit/editline.git
synced 2025-05-05 20:11:12 +08:00
Always use enums for el_status_t return values
Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
This commit is contained in:
parent
61d40f406f
commit
c95d25731d
@ -892,7 +892,7 @@ static el_status_t end_line(void)
|
||||
|
||||
static el_status_t del_char(void)
|
||||
{
|
||||
return delete_string(Repeat == NO_ARG ? 1 : Repeat);
|
||||
return delete_string(Repeat == NO_ARG ? CSeof : Repeat);
|
||||
}
|
||||
|
||||
el_status_t el_del_char(void)
|
||||
|
Loading…
Reference in New Issue
Block a user