diff options
author | Simon Josefsson <jas@extundo.com> | 2004-02-19 19:36:36 +0000 |
---|---|---|
committer | Simon Josefsson <jas@extundo.com> | 2004-02-19 19:36:36 +0000 |
commit | 507c5deb1e04694ed6c7393c54ebbacafc1062cd (patch) | |
tree | 62721ad5ad3e00e35e0863d89551e317d5b3114c /lisp/play/morse.el | |
parent | 83c9aa95a3a4d92568bee1c8155f2a10f9551960 (diff) | |
download | emacs-507c5deb1e04694ed6c7393c54ebbacafc1062cd.tar.gz |
Fix typo.
(morse-code): Add @.
Diffstat (limited to 'lisp/play/morse.el')
-rw-r--r-- | lisp/play/morse.el | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/lisp/play/morse.el b/lisp/play/morse.el index cda88f4e640..ce4e4877e5e 100644 --- a/lisp/play/morse.el +++ b/lisp/play/morse.el @@ -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 |