diff options
| author | Eric S. Raymond | 1993-03-18 03:38:31 +0000 |
|---|---|---|
| committer | Eric S. Raymond | 1993-03-18 03:38:31 +0000 |
| commit | 76eb14ff7f857b631378f160635b50d98ce676be (patch) | |
| tree | 51fe04e6695eae8f5653d84548d69416aed341e8 | |
| parent | 420cdb188647241b8a43835a036b35532aa8e487 (diff) | |
| download | emacs-76eb14ff7f857b631378f160635b50d98ce676be.tar.gz emacs-76eb14ff7f857b631378f160635b50d98ce676be.zip | |
(function-key-map) Nuke code no longer bound to keys.
| -rw-r--r-- | lisp/term/wyse50.el | 52 |
1 files changed, 0 insertions, 52 deletions
diff --git a/lisp/term/wyse50.el b/lisp/term/wyse50.el index c3a990d9026..01cb0467dd4 100644 --- a/lisp/term/wyse50.el +++ b/lisp/term/wyse50.el | |||
| @@ -37,58 +37,6 @@ | |||
| 37 | 37 | ||
| 38 | ;;; Code: | 38 | ;;; Code: |
| 39 | 39 | ||
| 40 | ;;; Functions especially for this terminal. | ||
| 41 | |||
| 42 | (defun wyse-50-insert-line () | ||
| 43 | "Insert an empty line." | ||
| 44 | (interactive) | ||
| 45 | (beginning-of-line) | ||
| 46 | (open-line 1)) | ||
| 47 | |||
| 48 | (defun wyse-50-delete-line () | ||
| 49 | "Delete all of the current line." | ||
| 50 | (interactive) | ||
| 51 | (beginning-of-line) | ||
| 52 | (kill-line 1)) | ||
| 53 | |||
| 54 | (defun wyse-50-insert-char () | ||
| 55 | "Insert a space, even in overwrite mode." | ||
| 56 | (interactive) | ||
| 57 | (insert ? )) | ||
| 58 | |||
| 59 | (defun wyse-50-print-buffer () | ||
| 60 | "Like ``print-buffer'', but verifies before printing. | ||
| 61 | The `print' key is easy to hit on a Wyse 50." | ||
| 62 | (interactive) | ||
| 63 | (if (y-or-n-p | ||
| 64 | (concat "Print buffer " | ||
| 65 | (buffer-name) "? ")) | ||
| 66 | (print-buffer))) | ||
| 67 | |||
| 68 | (defun wyse-50-top-of-window (n) | ||
| 69 | "Move point to the top line of the current window. | ||
| 70 | With an argument N, move to the Nth line of the window." | ||
| 71 | (interactive "p") | ||
| 72 | (move-to-window-line (1- n))) | ||
| 73 | |||
| 74 | (defun wyse-50-bottom-of-window (n) | ||
| 75 | "Move point to the last line of the current window. | ||
| 76 | With an argument N, move to the Nth line from the bottom of the window." | ||
| 77 | (interactive "p") | ||
| 78 | (move-to-window-line (- n))) | ||
| 79 | |||
| 80 | (defun wyse-50-toggle-screen-width () | ||
| 81 | "Alternate between 80 and 132 columns." | ||
| 82 | (interactive) | ||
| 83 | (if (<= (frame-width) 80) | ||
| 84 | (progn | ||
| 85 | (send-string-to-terminal "\e`;") | ||
| 86 | (set-frame-width 131)) | ||
| 87 | (send-string-to-terminal "\e`:") | ||
| 88 | (set-frame-width 79))) | ||
| 89 | |||
| 90 | |||
| 91 | ;;; Define the escape sequences for the function keys. | ||
| 92 | (define-key function-key-map "\C-a" (make-keymap)) | 40 | (define-key function-key-map "\C-a" (make-keymap)) |
| 93 | (mapcar (function (lambda (key-definition) | 41 | (mapcar (function (lambda (key-definition) |
| 94 | (define-key function-key-map | 42 | (define-key function-key-map |