From bad02f6ac0b272df131608b12b650795c0088e8f Mon Sep 17 00:00:00 2001 From: katherine Date: Sat, 9 Jan 2021 14:30:51 -0700 Subject: line-delim -> line-term --- src/opt.c | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/opt.c') diff --git a/src/opt.c b/src/opt.c index 6a958a6..40743cb 100644 --- a/src/opt.c +++ b/src/opt.c @@ -17,8 +17,8 @@ static struct simple_opt options[] = { "path to calendar file", "FILE" }, { SIMPLE_OPT_STRING, 'e', "editor", true, "text editor for editing calendars", "CMD" }, - { SIMPLE_OPT_CHAR, '\0', "line-delim", true, - "line delimiter for scripting output" }, + { SIMPLE_OPT_CHAR, '\0', "line-term", true, + "line terminator for scripting output" }, { SIMPLE_OPT_CHAR, '\0', "col-delim", true, "column delimiter for scripting output" }, { SIMPLE_OPT_END } @@ -99,7 +99,7 @@ char* opt_editor(void) return getenv("EDITOR"); } -char opt_line_delim(void) +char opt_line_term(void) { if (options[4].was_seen) return options[4].val.v_char; -- cgit v1.2.3