diff options
author | Tony Finch <fanf@FreeBSD.org> | 2004-02-20 11:55:38 +0000 |
---|---|---|
committer | Tony Finch <fanf@FreeBSD.org> | 2004-02-20 11:55:38 +0000 |
commit | ac5940be9df4d40ab27d3280fcb9b0eb499ccb89 (patch) | |
tree | 0e1a4e9b4295e5e7a14de48d35f7fe4345d5db42 | |
parent | f3b62198578f50112630652a18ae6c6f7081f7b7 (diff) | |
download | src-ac5940be9df4d40ab27d3280fcb9b0eb499ccb89.tar.gz src-ac5940be9df4d40ab27d3280fcb9b0eb499ccb89.zip |
Notes
-rw-r--r-- | games/morse/morse.6 | 2 | ||||
-rw-r--r-- | games/morse/morse.c | 5 |
2 files changed, 5 insertions, 2 deletions
diff --git a/games/morse/morse.6 b/games/morse/morse.6 index 21be6c9a2087..74aa5eb3faa4 100644 --- a/games/morse/morse.6 +++ b/games/morse/morse.6 @@ -102,7 +102,7 @@ Not all prosigns have corresponding characters. Use .Ql # for .Em AS , -.Ql @ +.Ql & for .Em SK , .Ql * diff --git a/games/morse/morse.c b/games/morse/morse.c index 3b7a4048f1e2..f02e80719a58 100644 --- a/games/morse/morse.c +++ b/games/morse/morse.c @@ -120,6 +120,8 @@ static const struct morsetab mtab[] = { {',', "--..--"}, {'.', ".-.-.-"}, + {'"', ".-..-."}, + {'!', "..--."}, {'?', "..--.."}, {'/', "-..-."}, {'-', "-....-"}, @@ -130,11 +132,12 @@ static const struct morsetab mtab[] = { {')', "-.--.-"}, {'$', "...-..-"}, {'+', ".-.-."}, /* AR */ + {'@', ".--.-."} /* prosigns without already assigned values */ {'#', ".-..."}, /* AS */ - {'@', "...-.-"}, /* SK */ + {'&', "...-.-"}, /* SK */ {'*', "...-."}, /* VE */ {'%', "-...-.-"}, /* BK */ |