diff lisp/play/morse.el @ 89909:68c22ea6027c

Sync to HEAD
author Kenichi Handa <handa@m17n.org>
date Fri, 16 Apr 2004 12:51:06 +0000
parents 375f2633d815
children 62afea0771d8
line wrap: on
line diff
--- a/lisp/play/morse.el	Thu Apr 15 01:08:34 2004 +0000
+++ b/lisp/play/morse.el	Fri Apr 16 12:51:06 2004 +0000
@@ -1,6 +1,6 @@
 ;;; morse.el --- convert text to morse code and back             -*- coding: utf-8 -*-
 
-;; Copyright (C) 1995, 2002 Free Software Foundation, Inc.
+;; Copyright (C) 1995, 2002, 2004 Free Software Foundation, Inc.
 
 ;; Author: Rick Farnbach <rick_farnbach@MENTORG.COM>
 ;; Keywords: games
@@ -24,7 +24,7 @@
 
 ;;; Commentary:
 
-;; 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 :-().
 
 ;;; Code:
@@ -88,7 +88,9 @@
 		     ("Ñ" . "--.--")
 		     ("Ö" . "---.")
 		     ("Ø" . "---.")
-		     ("Ü" . "..--"))
+		     ("Ü" . "..--")
+		     ;; Recently standardized
+		     ("@" . ".--.-."))
   "Morse code character set.")
 
 ;;;###autoload
@@ -138,4 +140,5 @@
 
 (provide 'morse)
 
+;;; arch-tag: 3331e6c1-9a9e-453f-abfd-163a9c3f93a6
 ;;; morse.el ends here