Module Name: src
Committed By: mrg
Date: Thu Jun 1 04:08:36 UTC 2023
Modified Files:
src/games/morse: morse.c
Log Message:
add 2004's "@" definition.
To generate a diff of this commit:
cvs rdiff -u -r1.19 -r1.20 src/games/morse/morse.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/games/morse/morse.c
diff -u src/games/morse/morse.c:1.19 src/games/morse/morse.c:1.20
--- src/games/morse/morse.c:1.19 Sun May 2 12:50:45 2021
+++ src/games/morse/morse.c Thu Jun 1 04:08:36 2023
@@ -1,4 +1,4 @@
-/* $NetBSD: morse.c,v 1.19 2021/05/02 12:50:45 rillig Exp $ */
+/* $NetBSD: morse.c,v 1.20 2023/06/01 04:08:36 mrg Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 19
#if 0
static char sccsid[] = "@(#)morse.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: morse.c,v 1.19 2021/05/02 12:50:45 rillig Exp $");
+__RCSID("$NetBSD: morse.c,v 1.20 2023/06/01 04:08:36 mrg Exp $");
#endif
#endif /* not lint */
@@ -108,6 +108,7 @@ static const struct punc {
{ '=', "-...-" },
{ '+', ".-.-." },
{ '_', "..--.-" },
+ { '@', ".--.-." },
{ '\0', NULL }
};