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:
Mattias Engdegård 2021-06-17 11:18:46 +02:00
parent 6af9f1f3ef
commit ac73d77ced

View file

@ -79,17 +79,16 @@
("8" . "---..")
("9" . "----.")
;; Non-ASCII
("Ä" . ".-.-")
("Æ" . ".-.-")
("Á" . ".--.-")
("Å" . ".--.-")
;; ligature character?? ("Ch" . "----")
("ß" . ".../...")
("É" . "..-..")
("Ñ" . "--.--")
("Ö" . "---.")
("Ø" . "---.")
("Ü" . "..--")
("ä" . ".-.-")
("æ" . ".-.-")
("á" . ".--.-")
("å" . ".--.-")
("ß" . ".../...") ; also ...--..
("é" . "..-..")
("ñ" . "--.--")
("ö" . "---.")
("ø" . "---.")
("ü" . "..--")
;; Recently standardized
("@" . ".--.-."))
"Morse code character set.")