]> git.eshelyaron.com Git - emacs.git/commitdiff
(morse-region, unmorse-region): Add autoload
authorDave Love <fx@gnu.org>
Sun, 8 Oct 2000 17:37:14 +0000 (17:37 +0000)
committerDave Love <fx@gnu.org>
Sun, 8 Oct 2000 17:37:14 +0000 (17:37 +0000)
cookie.

lisp/play/morse.el

index 5ab461641e57ea0d6f96a49dd7807c343495dcd0..02e01bc23b7db6b9e1008d1b79bbf88e921a1387 100644 (file)
@@ -3,6 +3,7 @@
 ;; Copyright (C) 1995 Free Software Foundation, Inc.
 
 ;; Author: Rick Farnbach <rick_farnbach@MENTORG.COM>
+;; Keywords: games
 
 ;; This file is part of GNU Emacs.
 
 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
 ;; Boston, MA 02111-1307, USA.
 
+;;; Commentary:
+
+;; Converts text to Morse code and back with M-x morese-region and
+;; M-x unmorse-region (though Morse code is no longer official :-().
+
 ;;; Code:
 
 (defvar morse-code '(("a" . ".-")
@@ -73,6 +79,7 @@
                     ("9" . "----."))
   "Morse code character set.")
 
+;;;###autoload
 (defun morse-region (beg end)
   "Convert all text in a given region to morse code."
   (interactive "r")
               (forward-char 1)
               (setq sep "")))))))
 
+;;;###autoload
 (defun unmorse-region (beg end)
   "Convert morse coded text in region to ordinary ASCII text."
   (interactive "r")