emacs-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[PATCH] Add non-ASCII characters to morse.el


From: Simon Josefsson
Subject: [PATCH] Add non-ASCII characters to morse.el
Date: Wed, 20 Nov 2002 12:25:59 +0100
User-agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.3.50 (i686-pc-linux-gnu)

Is there a better way to represent non-ASCII in elisp?  If anyone has
a better source of non-ASCII morse characters, it might be useful as
well.  Unfortunately, I think morse has been dropped as an official
language, so a canonical source might be difficult to find.

2002-11-20  Simon Josefsson  <address@hidden>

        * play/morse.el (morse-code): Add non-ASCII characters, according
        to table at http://www.soton.ac.uk/~scp93ch/morse/.

--- morse.el.~1.4.~     2001-07-16 11:10:19.000000000 +0200
+++ morse.el    2002-11-20 12:22:29.000000000 +0100
@@ -76,7 +76,16 @@
                     ("6" . "-....")
                     ("7" . "--...")
                     ("8" . "---..")
-                    ("9" . "----."))
+                    ("9" . "----.")
+                    ;; Non-ASCII
+                    ("Ä" . ".-.-")
+                    ("Á" . ".--.-")
+                    ("Å" . ".--.-")
+                    ("Ch" . "----")
+                    ("É" . "..-..")
+                    ("Ñ" . "--.--")
+                    ("Ö" . "---.")
+                    ("Ü" . "..--"))
   "Morse code character set.")
 
 ;;;###autoload





reply via email to

[Prev in Thread] Current Thread [Next in Thread]