Add _, from Eitan Adler in PR bin/52897

This commit is contained in:
maya 2018-01-16 06:20:24 +00:00
parent 08178a4b26
commit a3e52c510e
1 changed files with 3 additions and 2 deletions

View File

@ -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 }
};