[svn-commits] trunk r31690 - /trunk/apps/app_morsecode.c
svn-commits at lists.digium.com
svn-commits at lists.digium.com
Fri Jun 2 19:17:01 MST 2006
Author: tilghman
Date: Fri Jun 2 21:17:00 2006
New Revision: 31690
URL: http://svn.digium.com/view/asterisk?rev=31690&view=rev
Log:
Ooops, those characters weren't really periods (credit to John Olson)
Modified:
trunk/apps/app_morsecode.c
Modified: trunk/apps/app_morsecode.c
URL: http://svn.digium.com/view/asterisk/trunk/apps/app_morsecode.c?rev=31690&r1=31689&r2=31690&view=diff
==============================================================================
--- trunk/apps/app_morsecode.c (original)
+++ trunk/apps/app_morsecode.c Fri Jun 2 21:17:00 2006
@@ -86,18 +86,18 @@
".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--",
"-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--..",
"-.--.-", /* 91 - [ (really '(') */
- "-··-·", /* 92 - \ (really '/') */
+ "-..-.", /* 92 - \ (really '/') */
"-.--.-", /* 93 - ] (really ')') */
"", /* 94 - ^ */
- "··--·-", /* 95 - _ */
+ "..--.-", /* 95 - _ */
".----.", /* 96 - ` */
".-", "-...", "-.-.", "-..", ".", "..-.", "--.", "....", "..", ".---", "-.-", ".-..", "--",
"-.", "---", ".--.", "--.-", ".-.", "...", "-", "..-", "...-", ".--", "-..-", "-.--", "--..",
"-.--.-", /* 123 - { (really '(') */
"", /* 124 - | */
"-.--.-", /* 125 - } (really ')') */
- "-··-·", /* 126 - ~ (really bar) */
- "· · ·", /* 127 - <del> (error) */
+ "-..-.", /* 126 - ~ (really bar) */
+ ". . .", /* 127 - <del> (error) */
};
static void playtone(struct ast_channel *chan, int tone, int len)
More information about the svn-commits
mailing list