aboutsummaryrefslogtreecommitdiff
path: root/src/main.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.c')
-rw-r--r--src/main.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/main.c b/src/main.c
index 0e8ae8c..4fe6a4b 100644
--- a/src/main.c
+++ b/src/main.c
@@ -434,7 +434,8 @@ static const char version_etc_copyright[] =
/* Do *not* mark this string for translation. %s is a copyright
symbol suitable for this locale, and %d is the copyright
year. */
- "Copyright %s 2009-2016 Sergey Poznyakoff";
+ "Copyright %s %d Sergey Poznyakoff";
+static int copyright_year = 2021;
void
wy_version (struct mu_parseopt *po, mu_stream_t stream)
@@ -444,7 +445,7 @@ wy_version (struct mu_parseopt *po, mu_stream_t stream)
/* TRANSLATORS: Translate "(C)" to the copyright symbol
(C-in-a-circle), if this symbol is available in the user's
locale. Otherwise, do not translate "(C)"; leave it as-is. */
- mu_stream_printf (stream, version_etc_copyright, _("(C)"));
+ mu_stream_printf (stream, version_etc_copyright, _("(C)"), copyright_year);
mu_stream_printf (stream, "%s", _("\
\n\
License GPLv3+: GNU GPL version 3 or later <http://gnu.org/licenses/gpl.html>\n\

Return to:

Send suggestions and report system problems to the System administrator.