-;;; tpu-mapper.el --- Create a TPU-edt keymap file for x-windows emacs.
+;;; tpu-mapper.el --- Create a TPU-edt X-windows keymap file
;; Copyright (C) 1993, 1994, 1995 Free Software Foundation, Inc.
;;; Usage:
-;; Simply load this file into the X-windows version of emacs (version 19)
-;; using the following command.
+;; Simply load this file into the X-windows version of emacs using the
+;; following command.
-;; emacs -q -l tpu-mapper.el
+;; emacs -q -l tpu-mapper
;; The "-q" option prevents loading of your .emacs file (commands therein
;; might confuse this program).
;; Finally, you will be prompted for the name of the file to store the key
;; definitions. If you chose the default, TPU-edt will find it and load it
;; automatically. If you specify a different file name, you will need to
-;; set the variable "tpu-xkeys-file" before loading TPU-edt. Here's how
+;; set the variable "tpu-xkeys-file" before starting TPU-edt. Here's how
;; you might go about doing that in your .emacs file.
;; (setq tpu-xkeys-file (expand-file-name "~/.my-emacs-x-keys"))
-;; (load "tpu-edt")
+;; (tpu-edt)
;;; Known Problems:
;;; Code:
+
;;;
;;; Make sure we're running X-windows and Emacs version 19
;;;
(t
(message "Hit carriage-return <CR> to continue ")
(setq tpu-return-seq (read-event))
- (setq tpu-return (concat "[" (format "%s" tpu-return-seq) "]"))))
+ (setq tpu-return (concat "[" (format "%s" tpu-return-seq) "]"))))
;;;