morse(6) update

2016-01-17 Thread Stuart Henderson
Update for the current spec which includes an official prosign for @
(I'm not sure where the old one we had came from but it's not the right
thing to use nowadays) and distinct parentheses.

OK?

Index: morse.6
===
RCS file: /cvs/src/games/morse/morse.6,v
retrieving revision 1.1
diff -u -p -r1.1 morse.6
--- morse.6 7 Nov 2014 22:17:49 -   1.1
+++ morse.6 17 Jan 2016 23:45:01 -
@@ -71,3 +71,9 @@ Produce dots and dashes rather than word
 .%R "Operational provisions for the international public telegram service"
 .%O Division B, I. Morse code
 .Re
+.Rs
+.%I ITU-R M.1677-1
+.%R International Morse code
+.%D 2009
+.%U http://www.itu.int/rec/R-REC-M.1677-1-200910-I/
+.Re
Index: morse.c
===
RCS file: /cvs/src/games/morse/morse.c,v
retrieving revision 1.17
diff -u -p -r1.17 morse.c
--- morse.c 23 Oct 2015 02:01:15 -  1.17
+++ morse.c 17 Jan 2016 23:45:01 -
@@ -89,14 +89,14 @@ struct punc {
{ '-', "--" },
{ ':', "---..." },
{ ';', "-.-.-." },
-   { '(', "-.--.-." }, /* When converting from Morse, can't tell */
-   { ')', "-.--.-." }, /* '(' and ')' apart  */
+   { '(', "-.--." },
+   { ')', "-.--.-" },
{ '"', ".-..-." },
{ '`', ".-..-." },
{ '\'', ".." },
{ '+', ".-.-." },   /* AR */
{ '=', "-...-" },   /* BT */
-   { '@', "...-.-" },  /* SK */
+   { '@', ".--.-." },  /* AC */
{ '\0', NULL }
 };
 



Re: morse(6) update

2016-01-17 Thread Aaron Bieber

Stuart Henderson writes:

> Update for the current spec which includes an official prosign for @
> (I'm not sure where the old one we had came from but it's not the right
> thing to use nowadays) and distinct parentheses.
>
> OK?

OK abieber@ if you haven't gotten one yet.

>
> Index: morse.6
> ===
> RCS file: /cvs/src/games/morse/morse.6,v
> retrieving revision 1.1
> diff -u -p -r1.1 morse.6
> --- morse.6   7 Nov 2014 22:17:49 -   1.1
> +++ morse.6   17 Jan 2016 23:45:01 -
> @@ -71,3 +71,9 @@ Produce dots and dashes rather than word
>  .%R "Operational provisions for the international public telegram service"
>  .%O Division B, I. Morse code
>  .Re
> +.Rs
> +.%I ITU-R M.1677-1
> +.%R International Morse code
> +.%D 2009
> +.%U http://www.itu.int/rec/R-REC-M.1677-1-200910-I/
> +.Re
> Index: morse.c
> ===
> RCS file: /cvs/src/games/morse/morse.c,v
> retrieving revision 1.17
> diff -u -p -r1.17 morse.c
> --- morse.c   23 Oct 2015 02:01:15 -  1.17
> +++ morse.c   17 Jan 2016 23:45:01 -
> @@ -89,14 +89,14 @@ struct punc {
>   { '-', "--" },
>   { ':', "---..." },
>   { ';', "-.-.-." },
> - { '(', "-.--.-." }, /* When converting from Morse, can't tell */
> - { ')', "-.--.-." }, /* '(' and ')' apart  */
> + { '(', "-.--." },
> + { ')', "-.--.-" },
>   { '"', ".-..-." },
>   { '`', ".-..-." },
>   { '\'', ".." },
>   { '+', ".-.-." },   /* AR */
>   { '=', "-...-" },   /* BT */
> - { '@', "...-.-" },  /* SK */
> + { '@', ".--.-." },  /* AC */
>   { '\0', NULL }
>  };
>