diff options
| author | Stefan Monnier | 2008-01-04 06:52:27 +0000 |
|---|---|---|
| committer | Stefan Monnier | 2008-01-04 06:52:27 +0000 |
| commit | 88a83b17ecb9a1aec1de95401c8d36178f9a1b3e (patch) | |
| tree | a20c14831b781d3e51f0d6f77e11c2474d46ea9e /lisp | |
| parent | f33e2ef151a88a3d1e33bcc45c18a056962f562d (diff) | |
| download | emacs-88a83b17ecb9a1aec1de95401c8d36178f9a1b3e.tar.gz emacs-88a83b17ecb9a1aec1de95401c8d36178f9a1b3e.zip | |
(tpu-load-xkeys): Recommend to run the
tpu-mapper command rather than load the tpu-mapper package.
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/emulation/tpu-edt.el | 19 |
2 files changed, 17 insertions, 10 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 99bc34cb2be..de06c648443 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2008-01-04 Rob Riepel <riepel@networking.Stanford.EDU> | ||
| 2 | |||
| 3 | * emulation/tpu-edt.el (tpu-load-xkeys): Recommend to run the | ||
| 4 | tpu-mapper command rather than load the tpu-mapper package. | ||
| 5 | |||
| 6 | * emulation/tpu-mapper.el (tpu-mapper): New command. | ||
| 7 | Contains all the code previously at top-level. | ||
| 8 | |||
| 1 | 2008-01-04 Stefan Monnier <monnier@iro.umontreal.ca> | 9 | 2008-01-04 Stefan Monnier <monnier@iro.umontreal.ca> |
| 2 | 10 | ||
| 3 | * bs.el (bs--sort-by-mode, bs--get-mode-name): | 11 | * bs.el (bs--sort-by-mode, bs--get-mode-name): |
diff --git a/lisp/emulation/tpu-edt.el b/lisp/emulation/tpu-edt.el index c5ae34e0f07..4cd8b9e0d62 100644 --- a/lisp/emulation/tpu-edt.el +++ b/lisp/emulation/tpu-edt.el | |||
| @@ -1,7 +1,7 @@ | |||
| 1 | ;;; tpu-edt.el --- Emacs emulating TPU emulating EDT | 1 | ;;; tpu-edt.el --- Emacs emulating TPU emulating EDT |
| 2 | 2 | ||
| 3 | ;; Copyright (C) 1993, 1994, 1995, 2000, 2001, 2002, 2003, 2004, | 3 | ;; Copyright (C) 1993, 1994, 1995, 2000, 2001, 2002, 2003, 2004, |
| 4 | ;; 2005, 2006, 2007 Free Software Foundation, Inc. | 4 | ;; 2005, 2006, 2007, 2008 Free Software Foundation, Inc. |
| 5 | 5 | ||
| 6 | ;; Author: Rob Riepel <riepel@networking.stanford.edu> | 6 | ;; Author: Rob Riepel <riepel@networking.stanford.edu> |
| 7 | ;; Maintainer: Rob Riepel <riepel@networking.stanford.edu> | 7 | ;; Maintainer: Rob Riepel <riepel@networking.stanford.edu> |
| @@ -66,11 +66,10 @@ | |||
| 66 | ;; style keyboards. VT terminal emulators, including xterm with the | 66 | ;; style keyboards. VT terminal emulators, including xterm with the |
| 67 | ;; appropriate key translations, work just fine too. | 67 | ;; appropriate key translations, work just fine too. |
| 68 | 68 | ||
| 69 | ;; TPU-edt works with X-windows. This is accomplished through a TPU-edt X | 69 | ;; TPU-edt works with X-windows. This is accomplished through a TPU-edt |
| 70 | ;; key map. The TPU-edt module tpu-mapper creates this map and stores it | 70 | ;; X key map. The tpu-mapper command creates this map and stores it in a |
| 71 | ;; in a file. Tpu-mapper will be run automatically the first time you | 71 | ;; file. See the tpu-mapper command help for more information, or just |
| 72 | ;; invoke the X-windows version of emacs, or you can run it by hand. See | 72 | ;; run it and follow the directions. |
| 73 | ;; the commentary in tpu-mapper.el for details. | ||
| 74 | 73 | ||
| 75 | 74 | ||
| 76 | ;; %% Differences Between TPU-edt and DEC TPU/edt | 75 | ;; %% Differences Between TPU-edt and DEC TPU/edt |
| @@ -2347,10 +2346,10 @@ If FILE is nil, try to load a default file. The default file names are | |||
| 2347 | (cond ((file-readable-p file) | 2346 | (cond ((file-readable-p file) |
| 2348 | (load-file file)) | 2347 | (load-file file)) |
| 2349 | (t | 2348 | (t |
| 2350 | ;; FIXME: This used to force the user to build `file'. With the | 2349 | ;; This used to force the user to build `file'. With the |
| 2351 | ;; new code, such a file is not even necessary, but we'll keep | 2350 | ;; new code, such a file may not be necessary. In case it |
| 2352 | ;; a warning message. | 2351 | ;; is, issue a message giving a hint as to how to build it. |
| 2353 | (message "%s not found: use tpu-mapper.el to create it" | 2352 | (message "%s not found: use M-x tpu-mapper to create it" |
| 2354 | (abbreviate-file-name file))))) | 2353 | (abbreviate-file-name file))))) |
| 2355 | 2354 | ||
| 2356 | (defun tpu-copy-keyfile (oldname newname) | 2355 | (defun tpu-copy-keyfile (oldname newname) |