From mboxrd@z Thu Jan 1 00:00:00 1970 Path: main.gmane.org!not-for-mail From: Simon Josefsson Newsgroups: gmane.emacs.devel Subject: [PATCH] Add non-ASCII characters to morse.el Date: Wed, 20 Nov 2002 12:25:59 +0100 Sender: emacs-devel-admin@gnu.org Message-ID: NNTP-Posting-Host: main.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: main.gmane.org 1037791686 3041 80.91.224.249 (20 Nov 2002 11:28:06 GMT) X-Complaints-To: usenet@main.gmane.org NNTP-Posting-Date: Wed, 20 Nov 2002 11:28:06 +0000 (UTC) Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by main.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 18ET1Y-0000mk-00 for ; Wed, 20 Nov 2002 12:28:04 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.12 #1 (Debian)) id 18ET4i-0004Wb-00 for ; Wed, 20 Nov 2002 12:31:21 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.10) id 18ET0t-0003SC-00; Wed, 20 Nov 2002 06:27:23 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.10) id 18ESzg-0001z4-00 for emacs-devel@gnu.org; Wed, 20 Nov 2002 06:26:08 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.10) id 18ESzb-0001xx-00 for emacs-devel@gnu.org; Wed, 20 Nov 2002 06:26:06 -0500 Original-Received: from 178.230.13.217.in-addr.dgcsystems.net ([217.13.230.178] helo=yxa.extundo.com) by monty-python.gnu.org with esmtp (Exim 4.10) id 18ESza-0001xt-00 for emacs-devel@gnu.org; Wed, 20 Nov 2002 06:26:02 -0500 Original-Received: from latte.josefsson.org (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.12.6/8.12.6) with ESMTP id gAKBPxFu013632 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Wed, 20 Nov 2002 12:26:00 +0100 Original-To: emacs-devel@gnu.org X-Hashcash: 0:021120:emacs-devel@gnu.org:012fb153303377fe User-Agent: Gnus/5.090008 (Oort Gnus v0.08) Emacs/21.3.50 (i686-pc-linux-gnu) X-MIME-Autoconverted: from 8bit to quoted-printable by yxa.extundo.com id gAKBPxFu013632 Errors-To: emacs-devel-admin@gnu.org X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.0.11 Precedence: bulk List-Help: List-Post: List-Subscribe: , List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: Xref: main.gmane.org gmane.emacs.devel:9561 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:9561 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 * 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 + ("=C4" . ".-.-") + ("=C1" . ".--.-") + ("=C5" . ".--.-") + ("Ch" . "----") + ("=C9" . "..-..") + ("=D1" . "--.--") + ("=D6" . "---.") + ("=DC" . "..--")) "Morse code character set.") =20 ;;;###autoload