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: morse.el: support for @ Date: Thu, 19 Feb 2004 20:36:35 +0100 Sender: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Message-ID: NNTP-Posting-Host: deer.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Transfer-Encoding: quoted-printable X-Trace: sea.gmane.org 1077221750 13933 80.91.224.253 (19 Feb 2004 20:15:50 GMT) X-Complaints-To: usenet@sea.gmane.org NNTP-Posting-Date: Thu, 19 Feb 2004 20:15:50 +0000 (UTC) Original-X-From: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Thu Feb 19 21:15:42 2004 Return-path: Original-Received: from quimby.gnus.org ([80.91.224.244]) by deer.gmane.org with esmtp (Exim 3.35 #1 (Debian)) id 1AtuaE-0007o4-00 for ; Thu, 19 Feb 2004 21:15:42 +0100 Original-Received: from monty-python.gnu.org ([199.232.76.173]) by quimby.gnus.org with esmtp (Exim 3.35 #1 (Debian)) id 1AtuaE-0007h4-00 for ; Thu, 19 Feb 2004 21:15:42 +0100 Original-Received: from localhost ([127.0.0.1] helo=monty-python.gnu.org) by monty-python.gnu.org with esmtp (Exim 4.24) id 1AtuNY-0000JD-8Y for emacs-devel@quimby.gnus.org; Thu, 19 Feb 2004 15:02:36 -0500 Original-Received: from list by monty-python.gnu.org with tmda-scanned (Exim 4.24) id 1AtuIr-0007aK-EW for emacs-devel@gnu.org; Thu, 19 Feb 2004 14:57:45 -0500 Original-Received: from mail by monty-python.gnu.org with spam-scanned (Exim 4.24) id 1Attyj-0003qT-Q4 for emacs-devel@gnu.org; Thu, 19 Feb 2004 14:37:29 -0500 Original-Received: from [217.13.230.178] (helo=yxa.extundo.com) by monty-python.gnu.org with esmtp (TLSv1:DES-CBC3-SHA:168) (Exim 4.24) id 1Attyh-0003p5-21 for emacs-devel@gnu.org; Thu, 19 Feb 2004 14:36:55 -0500 Original-Received: from latte.josefsson.org (yxa.extundo.com [217.13.230.178]) (authenticated bits=0) by yxa.extundo.com (8.12.10/8.12.10) with ESMTP id i1JJahMe023478 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO) for ; Thu, 19 Feb 2004 20:36:45 +0100 Original-To: emacs-devel@gnu.org X-Hashcash: 0:040219:emacs-devel@gnu.org:363ae28e64c5dd82 User-Agent: Gnus/5.110002 (No Gnus v0.2) Emacs/21.3.50 (gnu/linux) X-MIME-Autoconverted: from 8bit to quoted-printable by yxa.extundo.com id i1JJahMe023478 X-BeenThere: emacs-devel@gnu.org X-Mailman-Version: 2.1.2 Precedence: list List-Id: Emacs development discussions. List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-devel-bounces+emacs-devel=quimby.gnus.org@gnu.org Xref: main.gmane.org gmane.emacs.devel:20073 X-Report-Spam: http://spam.gmane.org/gmane.emacs.devel:20073 I have installed this; please holler if anyone disagrees. 2004-02-19 Simon Josefsson * play/morse.el: Fix typo. (morse-code): Add @. Index: morse.el =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D RCS file: /cvsroot/emacs/emacs/lisp/play/morse.el,v retrieving revision 1.7 diff -u -p -u -w -r1.7 morse.el --- morse.el 1 Sep 2003 15:45:34 -0000 1.7 +++ morse.el 19 Feb 2004 19:33:52 -0000 @@ -1,6 +1,6 @@ ;;; morse.el --- convert text to morse code and back -*- cod= ing: utf-8 -*- =20 -;; Copyright (C) 1995, 2002 Free Software Foundation, Inc. +;; Copyright (C) 1995, 2002, 2004 Free Software Foundation, Inc. =20 ;; Author: Rick Farnbach ;; Keywords: games @@ -24,7 +24,7 @@ =20 ;;; Commentary: =20 -;; Converts text to Morse code and back with M-x morese-region and +;; Converts text to Morse code and back with M-x morse-region and ;; M-x unmorse-region (though Morse code is no longer official :-(). =20 ;;; Code: @@ -88,7 +88,9 @@ ("=D1" . "--.--") ("=D6" . "---.") ("=D8" . "---.") - ("=DC" . "..--")) + ("=DC" . "..--") + ;; Recently standardized + ("@" . ".--.-.")) "Morse code character set.") =20 ;;;###autoload