to table at http://www.soton.ac.uk/~scp93ch/morse/.
+2002-11-20 Simon Josefsson <jas@extundo.com>
+
+ * play/morse.el (morse-code): Add non-ASCII characters, according
+ to table at http://www.soton.ac.uk/~scp93ch/morse/.
+
2002-11-21 Richard M. Stallman <rms@gnu.org>
* dired.el (dired-sort-inhibit): New variable.
-;;; morse.el --- convert text to morse code and back
+;;; morse.el --- convert text to morse code and back -*- coding: utf-8 -*-
-;; Copyright (C) 1995 Free Software Foundation, Inc.
+;; Copyright (C) 1995, 2002 Free Software Foundation, Inc.
;; Author: Rick Farnbach <rick_farnbach@MENTORG.COM>
;; Keywords: games
("6" . "-....")
("7" . "--...")
("8" . "---..")
- ("9" . "----."))
+ ("9" . "----.")
+ ;; Non-ASCII
+ ("Ä" . ".-.-")
+ ("Á" . ".--.-")
+ ("Å" . ".--.-")
+ ;; ligature character?? ("Ch" . "----")
+ ("ß" . ".../...")
+ ("É" . "..-..")
+ ("Ñ" . "--.--")
+ ("Ö" . "---.")
+ ("Ü" . "..--"))
"Morse code character set.")
;;;###autoload