summaryrefslogtreecommitdiffstats
path: root/morse
diff options
context:
space:
mode:
authormaya <maya@NetBSD.org>2018-01-16 06:20:24 +0000
committermaya <maya@NetBSD.org>2018-01-16 06:20:24 +0000
commit9b55aff90d75dd4d8fc63d83a62455f3be9e28d5 (patch)
treec6990f66a7efd8459b3fc996a5aad87869dd3c91 /morse
parentf9f0d1974e90bee7074888d9eff3b47bcbc3b976 (diff)
downloadbsdgames-darwin-9b55aff90d75dd4d8fc63d83a62455f3be9e28d5.tar.gz
bsdgames-darwin-9b55aff90d75dd4d8fc63d83a62455f3be9e28d5.tar.zst
bsdgames-darwin-9b55aff90d75dd4d8fc63d83a62455f3be9e28d5.zip
Add _, from Eitan Adler in PR bin/52897
Diffstat (limited to 'morse')
-rw-r--r--morse/morse.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/morse/morse.c b/morse/morse.c
index d5ba3284..823d35d7 100644
--- a/morse/morse.c
+++ b/morse/morse.c
@@ -1,4 +1,4 @@
-/* $NetBSD: morse.c,v 1.17 2012/06/19 05:46:08 dholland Exp $ */
+/* $NetBSD: morse.c,v 1.18 2018/01/16 06:20:24 maya Exp $ */
/*
* Copyright (c) 1988, 1993
@@ -39,7 +39,7 @@ __COPYRIGHT("@(#) Copyright (c) 1988, 1993\
#if 0
static char sccsid[] = "@(#)morse.c 8.1 (Berkeley) 5/31/93";
#else
-__RCSID("$NetBSD: morse.c,v 1.17 2012/06/19 05:46:08 dholland Exp $");
+__RCSID("$NetBSD: morse.c,v 1.18 2018/01/16 06:20:24 maya Exp $");
#endif
#endif /* not lint */
@@ -107,6 +107,7 @@ static const struct punc {
{ '"', ".-..-." },
{ '=', "-...-" },
{ '+', ".-.-." },
+ { '_', "..--.-" },
{ '\0', NULL }
};