diff options
author | katherine <ageha@airen-no-jikken.icu> | 2021-01-09 14:30:51 -0700 |
---|---|---|
committer | katherine <ageha@airen-no-jikken.icu> | 2021-01-09 14:30:51 -0700 |
commit | bad02f6ac0b272df131608b12b650795c0088e8f (patch) | |
tree | f58e9a00230108f66457721f0242f871090bc8dd /src/calendar.c | |
parent | 5113a9fd817e5df67b3b9cf9cf3a4fee715587b8 (diff) | |
download | every-master.tar.gz |
Diffstat (limited to 'src/calendar.c')
-rw-r--r-- | src/calendar.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/calendar.c b/src/calendar.c index b852b1c..e656525 100644 --- a/src/calendar.c +++ b/src/calendar.c @@ -596,9 +596,9 @@ static char* sub_get_msg(struct state_s *s) } } - if (c == opt_line_delim() || c == opt_col_delim()) { + if (c == opt_line_term() || c == opt_col_delim()) { sub_set_pos(s, sub_get_pos(s)); - ERRP("message may not contain line or column delimiter characters"); + ERRP("message may not contain column delimiter or line terminator"); s->err_flag = true; free(msg); return NULL; |