Fix Morse for non-ASCII letters
* lisp/play/morse.el (morse-code): Downcase letters in the table because they must match downcased input.
This commit is contained in:
parent
6af9f1f3ef
commit
ac73d77ced
1 changed files with 10 additions and 11 deletions
|
@ -79,17 +79,16 @@
|
|||
("8" . "---..")
|
||||
("9" . "----.")
|
||||
;; Non-ASCII
|
||||
("Ä" . ".-.-")
|
||||
("Æ" . ".-.-")
|
||||
("Á" . ".--.-")
|
||||
("Å" . ".--.-")
|
||||
;; ligature character?? ("Ch" . "----")
|
||||
("ß" . ".../...")
|
||||
("É" . "..-..")
|
||||
("Ñ" . "--.--")
|
||||
("Ö" . "---.")
|
||||
("Ø" . "---.")
|
||||
("Ü" . "..--")
|
||||
("ä" . ".-.-")
|
||||
("æ" . ".-.-")
|
||||
("á" . ".--.-")
|
||||
("å" . ".--.-")
|
||||
("ß" . ".../...") ; also ...--..
|
||||
("é" . "..-..")
|
||||
("ñ" . "--.--")
|
||||
("ö" . "---.")
|
||||
("ø" . "---.")
|
||||
("ü" . "..--")
|
||||
;; Recently standardized
|
||||
("@" . ".--.-."))
|
||||
"Morse code character set.")
|
||||
|
|
Loading…
Add table
Reference in a new issue