Always use enums for el_status_t return values

Signed-off-by: Joachim Nilsson <troglobit@gmail.com>
This commit is contained in:
Joachim Nilsson 2019-05-06 00:54:17 +02:00
parent 61d40f406f
commit c95d25731d

View File

@ -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)