svn commit: r327521 - head/usr.bin/morse
Eitan Adler
eadler at FreeBSD.org
Wed Jan 3 17:04:15 UTC 2018
Author: eadler
Date: Wed Jan 3 17:04:13 2018
New Revision: 327521
URL: https://svnweb.freebsd.org/changeset/base/327521
Log:
morse(6): fix two typod
Modified:
head/usr.bin/morse/morse.6
head/usr.bin/morse/morse.c
Modified: head/usr.bin/morse/morse.6
==============================================================================
--- head/usr.bin/morse/morse.6 Wed Jan 3 16:16:20 2018 (r327520)
+++ head/usr.bin/morse/morse.6 Wed Jan 3 17:04:13 2018 (r327521)
@@ -85,7 +85,7 @@ Similar to
.Fl p ,
but use the RTS line of
.Ar device
-(which must by a TTY device)
+(which must be a TTY device)
in order to emit the morse code.
.It Fl e
Echo each character before it is sent, used together with either
Modified: head/usr.bin/morse/morse.c
==============================================================================
--- head/usr.bin/morse/morse.c Wed Jan 3 16:16:20 2018 (r327520)
+++ head/usr.bin/morse/morse.c Wed Jan 3 17:04:13 2018 (r327521)
@@ -155,7 +155,7 @@ static const struct morsetab iso8859_1tab[] = {
{'\350', "..-.."}, /* è */
{'\351', "..-.."}, /* é */
{'\352', "-..-."}, /* ê */
- {'\361', "--.--"}, /* n */
+ {'\361', "--.--"}, /* ñ */
{'\366', "---."}, /* ö */
{'\374', "..--"}, /* ü */
More information about the svn-src-all
mailing list