]> code.delx.au - gnu-emacs/blob - lisp/terminal.el
(te-escape): Show `?' in prompt for help key.
[gnu-emacs] / lisp / terminal.el
1 ;;; terminal.el --- terminal emulator for GNU Emacs
2
3 ;; Copyright (C) 1986,87,88,89,93,94 Free Software Foundation, Inc.
4
5 ;; Author: Richard Mlynarik <mly@eddie.mit.edu>
6 ;; Maintainer: FSF
7 ;; Keywords: comm, terminals
8
9 ;; This file is part of GNU Emacs.
10
11 ;; GNU Emacs is free software; you can redistribute it and/or modify
12 ;; it under the terms of the GNU General Public License as published by
13 ;; the Free Software Foundation; either version 2, or (at your option)
14 ;; any later version.
15
16 ;; GNU Emacs is distributed in the hope that it will be useful,
17 ;; but WITHOUT ANY WARRANTY; without even the implied warranty of
18 ;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19 ;; GNU General Public License for more details.
20
21 ;; You should have received a copy of the GNU General Public License
22 ;; along with GNU Emacs; see the file COPYING. If not, write to the
23 ;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
24 ;; Boston, MA 02111-1307, USA.
25
26 ;;; Commentary:
27
28 ;;; This file has been censored by the Communications Decency Act.
29 ;;; That law was passed under the guise of a ban on pornography, but
30 ;;; it bans far more than that. This file did not contain pornography,
31 ;;; but it was censored nonetheless.
32
33 ;;; For information on US government censorship of the Internet, and
34 ;;; what you can do to bring back freedom of the press, see the web
35 ;;; site http://www.vtw.org/
36
37 ;;; Code:
38
39 ;;>>TODO
40 ;;>> ** Nothing can be done about emacs' meta-lossage **
41 ;;>> (without redoing keymaps `sanely' -- ask Mly for details)
42
43 ;;>> One probably wants to do setenv MORE -c when running with
44 ;;>> more-processing enabled.
45
46 (require 'ehelp)
47
48 (defgroup terminal nil
49 "Terminal emulator for Emacs."
50 :group 'terminals)
51
52
53 (defcustom terminal-escape-char ?\C-^
54 "*All characters except for this are passed verbatim through the
55 terminal-emulator. This character acts as a prefix for commands
56 to the emulator program itself. Type this character twice to send
57 it through the emulator. Type ? after typing it for a list of
58 possible commands.
59 This variable is local to each terminal-emulator buffer."
60 :type 'character
61 :group 'terminal)
62
63 (defcustom terminal-scrolling t ;;>> Setting this to t sort-of defeats my whole aim in writing this package...
64 "*If non-nil, the terminal-emulator will losingly `scroll' when output occurs
65 past the bottom of the screen. If nil, output will win and `wrap' to the top
66 of the screen.
67 This variable is local to each terminal-emulator buffer."
68 :type 'boolean
69 :group 'terminal)
70
71 (defcustom terminal-more-processing t
72 "*If non-nil, do more-processing.
73 This variable is local to each terminal-emulator buffer."
74 :type 'boolean
75 :group 'terminal)
76
77 ;; If you are the sort of loser who uses scrolling without more breaks
78 ;; and expects to actually see anything, you should probably set this to
79 ;; around 400
80 (defcustom terminal-redisplay-interval 5000
81 "*Maximum number of characters which will be processed by the
82 terminal-emulator before a screen redisplay is forced.
83 Set this to a large value for greater throughput,
84 set it smaller for more frequent updates but overall slower
85 performance."
86 :type 'integer
87 :group 'terminal)
88
89 (defvar terminal-more-break-insertion
90 "*** More break -- Press space to continue ***")
91
92 (defvar terminal-meta-map nil)
93 (if terminal-meta-map
94 nil
95 (let ((map (make-sparse-keymap)))
96 (define-key map [t] 'te-pass-through)
97 (setq terminal-meta-map map)))
98
99 (defvar terminal-map nil)
100 (if terminal-map
101 nil
102 (let ((map (make-sparse-keymap)))
103 ;; Prevent defining [menu-bar] as te-pass-through
104 ;; so we allow the global menu bar to be visible.
105 (define-key map [menu-bar] (make-sparse-keymap))
106 (define-key map [t] 'te-pass-through)
107 (define-key map [switch-frame] 'handle-switch-frame)
108 (define-key map "\e" terminal-meta-map)
109 ;(define-key map "\C-l"
110 ; '(lambda () (interactive) (te-pass-through) (redraw-display)))
111 (setq terminal-map map)))
112
113 (defvar terminal-escape-map nil)
114 (if terminal-escape-map
115 nil
116 (let ((map (make-sparse-keymap)))
117 (define-key map [t] 'undefined)
118 (let ((s "0"))
119 (while (<= (aref s 0) ?9)
120 (define-key map s 'digit-argument)
121 (aset s 0 (1+ (aref s 0)))))
122 (define-key map "b" 'switch-to-buffer)
123 (define-key map "o" 'other-window)
124 (define-key map "e" 'te-set-escape-char)
125 (define-key map "\C-l" 'redraw-display)
126 (define-key map "\C-o" 'te-flush-pending-output)
127 (define-key map "m" 'te-toggle-more-processing)
128 (define-key map "x" 'te-escape-extended-command)
129 ;;>> What use is this? Why is it in the default terminal-emulator map?
130 (define-key map "w" 'te-edit)
131 (define-key map "?" 'te-escape-help)
132 (define-key map (char-to-string help-char) 'te-escape-help)
133 (setq terminal-escape-map map)))
134
135 (defvar te-escape-command-alist nil)
136 (if te-escape-command-alist
137 nil
138 (setq te-escape-command-alist
139 '(("Set Escape Character" . te-set-escape-char)
140 ;;>> What use is this? Why is it in the default terminal-emulator map?
141 ("Edit" . te-edit)
142 ("Refresh" . redraw-display)
143 ("Record Output" . te-set-output-log)
144 ("Photo" . te-set-output-log)
145 ("Tofu" . te-tofu) ;; confuse the uninitiated
146 ("Stuff Input" . te-stuff-string)
147 ("Flush Pending Output" . te-flush-pending-output)
148 ("Enable More Processing" . te-enable-more-processing)
149 ("Disable More Processing" . te-disable-more-processing)
150 ("Scroll at end of page" . te-do-scrolling)
151 ("Wrap at end of page" . te-do-wrapping)
152 ("Switch To Buffer" . switch-to-buffer)
153 ("Other Window" . other-window)
154 ("Kill Buffer" . kill-buffer)
155 ("Help" . te-escape-help)
156 ("Set Redisplay Interval" . te-set-redisplay-interval)
157 )))
158
159 (defvar terminal-more-break-map nil)
160 (if terminal-more-break-map
161 nil
162 (let ((map (make-sparse-keymap)))
163 (define-key map [t] 'te-more-break-unread)
164 (define-key map (char-to-string help-char) 'te-more-break-help)
165 (define-key map " " 'te-more-break-resume)
166 (define-key map "\C-l" 'redraw-display)
167 (define-key map "\C-o" 'te-more-break-flush-pending-output)
168 ;;>>> this isn't right
169 ;(define-key map "\^?" 'te-more-break-flush-pending-output) ;DEL
170 (define-key map "\r" 'te-more-break-advance-one-line)
171
172 (setq terminal-more-break-map map)))
173
174 \f
175 ;;; Pacify the byte compiler
176 (defvar te-process nil)
177 (defvar te-log-buffer nil)
178 (defvar te-height nil)
179 (defvar te-width nil)
180 (defvar te-more-count nil)
181 (defvar te-redisplay-count nil)
182 (defvar te-pending-output nil)
183 (defvar te-saved-point)
184 (defvar te-more-old-point nil)
185 (defvar te-more-old-local-map nil)
186 (defvar te-more-old-filter nil)
187 (defvar te-more-old-mode-line-format nil)
188 (defvar te-pending-output-info nil)
189
190 ;; Required to support terminfo systems
191 (defconst te-terminal-name-prefix "emacs-em"
192 "Prefix used for terminal type names for Terminfo.")
193 (defconst te-terminfo-directory
194 (file-name-as-directory
195 (expand-file-name "emacs-terminfo" temporary-file-directory))
196 "Directory used for run-time terminal definition files for Terminfo.")
197 (defvar te-terminal-name nil)
198 \f
199 ;;;; escape map
200
201 (defun te-escape ()
202 (interactive)
203 (let (s
204 (local (current-local-map))
205 (global (current-global-map)))
206 (unwind-protect
207 (progn
208 (use-global-map terminal-escape-map)
209 (use-local-map terminal-escape-map)
210 (setq s (read-key-sequence
211 (if current-prefix-arg
212 (format "Emacs Terminal escape[%s for help]> %d "
213 (substitute-command-keys
214 "\\<terminal-escape-map>\\[te-escape-help]")
215 (prefix-numeric-value current-prefix-arg))
216 (format "Emacs Terminal escape[%s for help]> "
217 (substitute-command-keys
218 "\\<terminal-escape-map>\\[te-escape-help]"))))))
219 (use-global-map global)
220 (use-local-map local))
221
222 (message "")
223
224 (cond
225 ;; Certain keys give vector notation, like [escape] when
226 ;; you hit esc key...
227 ((and (stringp s)
228 (string= s (make-string 1 terminal-escape-char)))
229 (setq last-command-char terminal-escape-char)
230 (let ((terminal-escape-char -259))
231 (te-pass-through)))
232
233 ((setq s (lookup-key terminal-escape-map s))
234 (call-interactively s)))
235
236 ))
237
238
239 (defun te-escape-help ()
240 "Provide help on commands available after terminal-escape-char is typed."
241 (interactive)
242 (message "Terminal emulator escape help...")
243 (let ((char (single-key-description terminal-escape-char)))
244 (with-electric-help
245 (function (lambda ()
246 (princ (format "Terminal-emulator escape, invoked by \"%s\"
247 Type \"%s\" twice to send a single \"%s\" through.
248
249 Other chars following \"%s\" are interpreted as follows:\n"
250 char char char char))
251
252 (princ (substitute-command-keys "\\{terminal-escape-map}\n"))
253 (princ (format "\nSubcommands of \"%s\" (%s)\n"
254 (where-is-internal 'te-escape-extended-command
255 terminal-escape-map t)
256 'te-escape-extended-command))
257 (let ((l (sort (copy-sequence te-escape-command-alist)
258 (function (lambda (a b)
259 (string< (car a) (car b)))))))
260 (while l
261 (let ((doc (or (documentation (cdr (car l)))
262 "Not documented")))
263 (if (string-match "\n" doc)
264 ;; just use first line of documentation
265 (setq doc (substring doc 0 (match-beginning 0))))
266 (princ " \"")
267 (princ (car (car l)))
268 (princ "\":\n ")
269 (princ doc)
270 (write-char ?\n))
271 (setq l (cdr l))))
272 nil)))))
273
274
275
276 (defun te-escape-extended-command ()
277 (interactive)
278 (let ((c (let ((completion-ignore-case t))
279 (completing-read "terminal command: "
280 te-escape-command-alist
281 nil t))))
282 (if c
283 (catch 'foo
284 (setq c (downcase c))
285 (let ((l te-escape-command-alist))
286 (while l
287 (if (string= c (downcase (car (car l))))
288 (throw 'foo (call-interactively (cdr (car l))))
289 (setq l (cdr l)))))))))
290
291 ;; not used.
292 (defun te-escape-extended-command-unread ()
293 (interactive)
294 (setq unread-command-events (listify-key-sequence (this-command-keys)))
295 (te-escape-extended-command))
296
297 (defun te-set-escape-char (c)
298 "Change the terminal-emulator escape character."
299 (interactive "cSet escape character to: ")
300 (let ((o terminal-escape-char))
301 (message (if (= o c)
302 "\"%s\" is the escape char"
303 "\"%s\" is now the escape; \"%s\" passes through")
304 (single-key-description c)
305 (single-key-description o))
306 (setq terminal-escape-char c)))
307
308
309 (defun te-stuff-string (string)
310 "Read a string to send to through the terminal emulator
311 as though that string had been typed on the keyboard.
312
313 Very poor man's file transfer protocol."
314 (interactive "sStuff string: ")
315 (process-send-string te-process string))
316
317 (defun te-set-output-log (name)
318 "Record output from the terminal emulator in a buffer."
319 (interactive (list (if te-log-buffer
320 nil
321 (read-buffer "Record output in buffer: "
322 (format "%s output-log"
323 (buffer-name (current-buffer)))
324 nil))))
325 (if (or (null name) (equal name ""))
326 (progn (setq te-log-buffer nil)
327 (message "Output logging off."))
328 (if (get-buffer name)
329 nil
330 (save-excursion
331 (set-buffer (get-buffer-create name))
332 (fundamental-mode)
333 (buffer-disable-undo (current-buffer))
334 (erase-buffer)))
335 (setq te-log-buffer (get-buffer name))
336 (message "Recording terminal emulator output into buffer \"%s\""
337 (buffer-name te-log-buffer))))
338
339 (defun te-tofu ()
340 "Discontinue output log."
341 (interactive)
342 (te-set-output-log nil))
343
344
345 (defun te-toggle (sym arg)
346 (set sym (cond ((not (numberp arg)) arg)
347 ((= arg 1) (not (symbol-value sym)))
348 ((< arg 0) nil)
349 (t t))))
350
351 (defun te-toggle-more-processing (arg)
352 (interactive "p")
353 (message (if (te-toggle 'terminal-more-processing arg)
354 "More processing on" "More processing off"))
355 (if terminal-more-processing (setq te-more-count -1)))
356
357 (defun te-toggle-scrolling (arg)
358 (interactive "p")
359 (message (if (te-toggle 'terminal-scrolling arg)
360 "Scroll at end of page" "Wrap at end of page")))
361
362 (defun te-enable-more-processing ()
363 "Enable ** MORE ** processing"
364 (interactive)
365 (te-toggle-more-processing t))
366
367 (defun te-disable-more-processing ()
368 "Disable ** MORE ** processing"
369 (interactive)
370 (te-toggle-more-processing nil))
371
372 (defun te-do-scrolling ()
373 "Scroll at end of page (yuck)"
374 (interactive)
375 (te-toggle-scrolling t))
376
377 (defun te-do-wrapping ()
378 "Wrap to top of window at end of page"
379 (interactive)
380 (te-toggle-scrolling nil))
381
382
383 (defun te-set-redisplay-interval (arg)
384 "Set the maximum interval (in output characters) between screen updates.
385 Set this number to large value for greater throughput,
386 set it smaller for more frequent updates (but overall slower performance."
387 (interactive "NMax number of output chars between redisplay updates: ")
388 (setq arg (max arg 1))
389 (setq terminal-redisplay-interval arg
390 te-redisplay-count 0))
391 \f
392 ;;;; more map
393
394 ;; every command -must- call te-more-break-unwind
395 ;; or grave lossage will result
396
397 (put 'te-more-break-unread 'suppress-keymap t)
398 (defun te-more-break-unread ()
399 (interactive)
400 (if (eq last-input-char terminal-escape-char)
401 (call-interactively 'te-escape)
402 (message "Continuing from more break (\"%s\" typed, %d chars output pending...)"
403 (single-key-description last-input-char)
404 (te-pending-output-length))
405 (setq te-more-count 259259)
406 (te-more-break-unwind)
407 (let ((terminal-more-processing nil))
408 (te-pass-through))))
409
410 (defun te-more-break-resume ()
411 "Proceed past the **MORE** break,
412 allowing the next page of output to appear"
413 (interactive)
414 (message "Continuing from more break")
415 (te-more-break-unwind))
416
417 (defun te-more-break-help ()
418 "Provide help on commands available in a terminal-emulator **MORE** break"
419 (interactive)
420 (message "Terminal-emulator more break help...")
421 (sit-for 0)
422 (with-electric-help
423 (function (lambda ()
424 (princ "Terminal-emulator more break.\n\n")
425 (princ (format "Type \"%s\" (te-more-break-resume)\n%s\n"
426 (where-is-internal 'te-more-break-resume
427 terminal-more-break-map t)
428 (documentation 'te-more-break-resume)))
429 (princ (substitute-command-keys "\\{terminal-more-break-map}\n"))
430 (princ "Any other key is passed through to the program
431 running under the terminal emulator and disables more processing until
432 all pending output has been dealt with.")
433 nil))))
434
435
436 (defun te-more-break-advance-one-line ()
437 "Allow one more line of text to be output before doing another more break."
438 (interactive)
439 (setq te-more-count 1)
440 (te-more-break-unwind))
441
442 (defun te-more-break-flush-pending-output ()
443 "Discard any output which has been received by the terminal emulator but
444 not yet processed and then proceed from the more break."
445 (interactive)
446 (te-more-break-unwind)
447 (te-flush-pending-output))
448
449 (defun te-flush-pending-output ()
450 "Discard any as-yet-unprocessed output which has been received by
451 the terminal emulator."
452 (interactive)
453 ;; this could conceivably be confusing in the presence of
454 ;; escape-sequences spanning process-output chunks
455 (if (null (cdr te-pending-output))
456 (message "(There is no output pending)")
457 (let ((length (te-pending-output-length)))
458 (message "Flushing %d chars of pending output" length)
459 (setq te-pending-output
460 (list 0 (format "\n*** %d chars of pending output flushed ***\n"
461 length)))
462 (te-update-pending-output-display)
463 (te-process-output nil)
464 (sit-for 0))))
465
466 \f
467 (defun te-pass-through ()
468 "Character is passed to the program running under the terminal emulator.
469 One characters is treated specially:
470 the terminal escape character (normally C-^)
471 lets you type a terminal emulator command."
472 (interactive)
473 (cond ((eq last-input-char terminal-escape-char)
474 (call-interactively 'te-escape))
475 (t
476 ;; Convert `return' to C-m, etc.
477 (if (and (symbolp last-input-char)
478 (get last-input-char 'ascii-character))
479 (setq last-input-char (get last-input-char 'ascii-character)))
480 ;; Convert meta characters to 8-bit form for transmission.
481 (if (and (integerp last-input-char)
482 (not (zerop (logand last-input-char ?\M-\^@))))
483 (setq last-input-char (+ 128 (logand last-input-char 127))))
484 ;; Now ignore all but actual characters.
485 ;; (It ought to be possible to send through function
486 ;; keys as character sequences if we add a description
487 ;; to our termcap entry of what they should look like.)
488 (if (integerp last-input-char)
489 (progn
490 (and terminal-more-processing (null (cdr te-pending-output))
491 (te-set-more-count nil))
492 (send-string te-process (make-string 1 last-input-char))
493 (te-process-output t))
494 (message "Function key `%s' ignored"
495 (single-key-description last-input-char))))))
496
497
498 (defun te-set-window-start ()
499 (let* ((w (get-buffer-window (current-buffer)))
500 (h (if w (window-height w))))
501 (cond ((not w)) ; buffer not displayed
502 ((>= h (/ (- (point) (point-min)) (1+ te-width)))
503 ;; this is the normal case
504 (set-window-start w (point-min)))
505 ;; this happens if some vandal shrinks our window.
506 ((>= h (/ (- (point-max) (point)) (1+ te-width)))
507 (set-window-start w (- (point-max) (* h (1+ te-width)) -1)))
508 ;; I give up.
509 (t nil))))
510
511 (defun te-pending-output-length ()
512 (let ((length (car te-pending-output))
513 (tem (cdr te-pending-output)))
514 (while tem
515 (setq length (+ length (length (car tem))) tem (cdr tem)))
516 length))
517 \f
518 ;;>> What use is this terminal-edit stuff anyway?
519 ;;>> If nothing else, it was written by somebody who didn't
520 ;;>> competently understand the terminal-emulator...
521
522 (defvar terminal-edit-map nil)
523 (if terminal-edit-map
524 nil
525 (setq terminal-edit-map (make-sparse-keymap))
526 (define-key terminal-edit-map "\C-c\C-c" 'terminal-cease-edit))
527
528 ;; Terminal Edit mode is suitable only for specially formatted data.
529 (put 'terminal-edit-mode 'mode-class 'special)
530
531 (defun terminal-edit-mode ()
532 "Major mode for editing the contents of a terminal-emulator buffer.
533 The editing commands are the same as in Fundamental mode,
534 together with a command \\<terminal-edit-map>to return to terminal emulation: \\[terminal-cease-edit]."
535 (use-local-map terminal-edit-map)
536 (setq major-mode 'terminal-edit-mode)
537 (setq mode-name "Terminal Edit")
538 (setq mode-line-modified (default-value 'mode-line-modified))
539 (setq mode-line-process nil)
540 (run-hooks 'terminal-edit-mode-hook))
541
542 (defun te-edit ()
543 "Start editing the terminal emulator buffer with ordinary Emacs commands."
544 (interactive)
545 (terminal-edit-mode)
546 (force-mode-line-update)
547 ;; Make mode line update.
548 (if (eq (key-binding "\C-c\C-c") 'terminal-cease-edit)
549 (message "Editing: Type C-c C-c to return to Terminal")
550 (message "%s"
551 (substitute-command-keys
552 "Editing: Type \\[terminal-cease-edit] to return to Terminal"))))
553
554 (defun terminal-cease-edit ()
555 "Finish editing message; switch back to Terminal proper."
556 (interactive)
557
558 ;;>> emulator will blow out if buffer isn't exactly te-width x te-height
559 (let ((buffer-read-only nil))
560 (widen)
561 (let ((opoint (point-marker))
562 (width te-width)
563 (h (1- te-height)))
564 (goto-char (point-min))
565 (while (>= h 0)
566 (let ((p (point)))
567 (cond ((search-forward "\n" (+ p width) 'move)
568 (forward-char -1)
569 (insert-char ?\ (- width (- (point) p)))
570 (forward-char 1))
571 ((eobp)
572 (insert-char ?\ (- width (- (point) p))))
573 ((= (following-char) ?\n)
574 (forward-char 1))
575 (t
576 (setq p (point))
577 (if (search-forward "\n" nil t)
578 (delete-region p (1- (point)))
579 (delete-region p (point-max))))))
580 (if (= h 0)
581 (if (not (eobp)) (delete-region (point) (point-max)))
582 (if (eobp) (insert ?\n)))
583 (setq h (1- h)))
584 (goto-char opoint)
585 (set-marker opoint nil nil)
586 (setq te-saved-point (point))
587 (setq te-redisplay-count 0)
588 (setq te-more-count -1)))
589
590 (setq mode-line-modified (default-value 'mode-line-modified))
591 (use-local-map terminal-map)
592 (setq major-mode 'terminal-mode)
593 (setq mode-name "terminal")
594 (setq mode-line-process '(":%s")))
595 \f
596 ;;;; more break hair
597
598 (defun te-more-break ()
599 (te-set-more-count t)
600 (make-local-variable 'te-more-old-point)
601 (setq te-more-old-point (point))
602 (make-local-variable 'te-more-old-local-map)
603 (setq te-more-old-local-map (current-local-map))
604 (use-local-map terminal-more-break-map)
605 (make-local-variable 'te-more-old-filter)
606 (setq te-more-old-filter (process-filter te-process))
607 (make-local-variable 'te-more-old-mode-line-format)
608 (setq te-more-old-mode-line-format mode-line-format
609 mode-line-format (list "-- **MORE** "
610 mode-line-buffer-identification
611 "%-"))
612 (set-process-filter te-process
613 (function (lambda (process string)
614 (save-excursion
615 (set-buffer (process-buffer process))
616 (setq te-pending-output (nconc te-pending-output
617 (list string))))
618 (te-update-pending-output-display))))
619 (te-update-pending-output-display)
620 (if (eq (window-buffer (selected-window)) (current-buffer))
621 (message "More break "))
622 (or (eobp)
623 (null terminal-more-break-insertion)
624 (save-excursion
625 (forward-char 1)
626 (delete-region (point) (+ (point) te-width))
627 (insert terminal-more-break-insertion)))
628 (run-hooks 'terminal-more-break-hook)
629 (sit-for 0) ;get display to update
630 (throw 'te-process-output t))
631
632 (defun te-more-break-unwind ()
633 (use-local-map te-more-old-local-map)
634 (set-process-filter te-process te-more-old-filter)
635 (goto-char te-more-old-point)
636 (setq mode-line-format te-more-old-mode-line-format)
637 (force-mode-line-update)
638 (let ((buffer-read-only nil))
639 (cond ((eobp))
640 (terminal-more-break-insertion
641 (forward-char 1)
642 (delete-region (point)
643 (+ (point) (length terminal-more-break-insertion)))
644 (insert-char ?\ te-width)
645 (goto-char te-more-old-point)))
646 (setq te-more-old-point nil)
647 (let ((te-more-count 259259))
648 (te-newline)))
649 ;(sit-for 0)
650 (te-process-output t))
651
652 (defun te-set-more-count (newline)
653 (let ((line (/ (- (point) (point-min)) (1+ te-width))))
654 (if newline (setq line (1+ line)))
655 (cond ((= line te-height)
656 (setq te-more-count te-height))
657 ;>>>> something is strange. Investigate this!
658 ((= line (1- te-height))
659 (setq te-more-count te-height))
660 ((or (< line (/ te-height 2))
661 (> (- te-height line) 10))
662 ;; break at end of this page
663 (setq te-more-count (- te-height line)))
664 (t
665 ;; migrate back towards top (ie bottom) of screen.
666 (setq te-more-count (- te-height
667 (if (> te-height 10) 2 1)))))))
668
669 \f
670 ;;;; More or less straight-forward terminal escapes
671
672 ;; ^j, meaning `newline' to non-display programs.
673 ;; (Who would think of ever writing a system which doesn't understand
674 ;; display terminals natively? Un*x: The Operating System of the Future.)
675 (defun te-newline ()
676 "Move down a line, optionally do more processing, perhaps wrap/scroll,
677 move to start of new line, clear to end of line."
678 (end-of-line)
679 (cond ((not terminal-more-processing))
680 ((< (setq te-more-count (1- te-more-count)) 0)
681 (te-set-more-count t))
682 ((eq te-more-count 0)
683 ;; this doesn't return
684 (te-more-break)))
685 (if (eobp)
686 (progn
687 (delete-region (point-min) (+ (point-min) te-width))
688 (goto-char (point-min))
689 (if terminal-scrolling
690 (progn (delete-char 1)
691 (goto-char (point-max))
692 (insert ?\n))))
693 (forward-char 1)
694 (delete-region (point) (+ (point) te-width)))
695 (insert-char ?\ te-width)
696 (beginning-of-line)
697 (te-set-window-start))
698
699 ; ^p = x+32 y+32
700 (defun te-move-to-position ()
701 ;; must offset by #o40 since cretinous unix won't send a 004 char through
702 (let ((y (- (te-get-char) 32))
703 (x (- (te-get-char) 32)))
704 (if (or (> x te-width)
705 (> y te-height))
706 ()
707 (goto-char (+ (point-min) x (* y (1+ te-width))))
708 ;(te-set-window-start?)
709 ))
710 (setq te-more-count -1))
711
712
713
714 ;; ^p c
715 (defun te-clear-rest-of-line ()
716 (save-excursion
717 (let ((n (- (point) (progn (end-of-line) (point)))))
718 (delete-region (point) (+ (point) n))
719 (insert-char ?\ (- n)))))
720
721
722 ;; ^p C
723 (defun te-clear-rest-of-screen ()
724 (save-excursion
725 (te-clear-rest-of-line)
726 (while (progn (end-of-line) (not (eobp)))
727 (forward-char 1) (end-of-line)
728 (delete-region (- (point) te-width) (point))
729 (insert-char ?\ te-width))))
730
731
732 ;; ^p ^l
733 (defun te-clear-screen ()
734 ;; regenerate buffer to compensate for (nonexistent!!) bugs.
735 (erase-buffer)
736 (let ((i 0))
737 (while (< i te-height)
738 (setq i (1+ i))
739 (insert-char ?\ te-width)
740 (insert ?\n)))
741 (delete-region (1- (point-max)) (point-max))
742 (goto-char (point-min))
743 (setq te-more-count -1))
744
745
746 ;; ^p ^o count+32
747 (defun te-insert-lines ()
748 (if (not (bolp))
749 ();(error "fooI")
750 (save-excursion
751 (let* ((line (- te-height (/ (- (point) (point-min)) (1+ te-width)) -1))
752 (n (min (- (te-get-char) ?\ ) line))
753 (i 0))
754 (delete-region (- (point-max) (* n (1+ te-width))) (point-max))
755 (if (eq (point) (point-max)) (insert ?\n))
756 (while (< i n)
757 (setq i (1+ i))
758 (insert-char ?\ te-width)
759 (or (eq i line) (insert ?\n))))))
760 (setq te-more-count -1))
761
762
763 ;; ^p ^k count+32
764 (defun te-delete-lines ()
765 (if (not (bolp))
766 ();(error "fooD")
767 (let* ((line (- te-height (/ (- (point) (point-min)) (1+ te-width)) -1))
768 (n (min (- (te-get-char) ?\ ) line))
769 (i 0))
770 (delete-region (point)
771 (min (+ (point) (* n (1+ te-width))) (point-max)))
772 (save-excursion
773 (goto-char (point-max))
774 (while (< i n)
775 (setq i (1+ i))
776 (insert-char ?\ te-width)
777 (or (eq i line) (insert ?\n))))))
778 (setq te-more-count -1))
779
780 ;; ^p ^a
781 (defun te-beginning-of-line ()
782 (beginning-of-line))
783
784 ;; ^p ^b
785 (defun te-backward-char ()
786 (if (not (bolp))
787 (backward-char 1)))
788
789 ;; ^p ^f
790 (defun te-forward-char ()
791 (if (not (eolp))
792 (forward-char 1)))
793
794 \f
795 ;; 0177
796 (defun te-delete ()
797 (if (bolp)
798 ()
799 (delete-region (1- (point)) (point))
800 (insert ?\ )
801 (forward-char -1)))
802
803 ;; ^p ^g
804 (defun te-beep ()
805 (beep))
806
807
808 ;; ^p _ count+32
809 (defun te-insert-spaces ()
810 (let* ((p (point))
811 (n (min (- (te-get-char) 32)
812 (- (progn (end-of-line) (point)) p))))
813 (if (<= n 0)
814 nil
815 (delete-char (- n))
816 (goto-char p)
817 (insert-char ?\ n))
818 (goto-char p)))
819
820 ;; ^p d count+32 (should be ^p ^d but cretinous un*x won't send ^d chars!!!)
821 (defun te-delete-char ()
822 (let* ((p (point))
823 (n (min (- (te-get-char) 32)
824 (- (progn (end-of-line) (point)) p))))
825 (if (<= n 0)
826 nil
827 (insert-char ?\ n)
828 (goto-char p)
829 (delete-char n))
830 (goto-char p)))
831
832
833 \f
834 ;; disgusting unix-required excrement
835 ;; Are we living twenty years in the past yet?
836
837 (defun te-losing-unix ()
838 nil)
839
840 ;; ^i
841 (defun te-output-tab ()
842 (let* ((p (point))
843 (x (- p (progn (beginning-of-line) (point))))
844 (l (min (- 8 (logand x 7))
845 (progn (end-of-line) (- (point) p)))))
846 (goto-char (+ p l))))
847
848 ;; ^p ^j
849 ;; Handle the `do' or `nl' termcap capability.
850 ;;>> I am not sure why this broken, obsolete, capability is here.
851 ;;>> Perhaps it is for VIle. No comment was made about why it
852 ;;>> was added (in "Sun Dec 6 01:22:27 1987 Richard Stallman")
853 (defun te-down-vertically-or-scroll ()
854 "Move down a line vertically, or scroll at bottom."
855 (let ((column (current-column)))
856 (end-of-line)
857 (if (eobp)
858 (progn
859 (delete-region (point-min) (+ (point-min) te-width))
860 (goto-char (point-min))
861 (delete-char 1)
862 (goto-char (point-max))
863 (insert ?\n)
864 (insert-char ?\ te-width)
865 (beginning-of-line))
866 (forward-line 1))
867 (move-to-column column))
868 (te-set-window-start))
869
870 ;; Also:
871 ;; ^m => beginning-of-line (for which it -should- be using ^p ^a, right?!!)
872 ;; ^g => te-beep (for which it should use ^p ^g)
873 ;; ^h => te-backward-char (for which it should use ^p ^b)
874
875 \f
876
877 (defun te-filter (process string)
878 (let* ((obuf (current-buffer)))
879 ;; can't use save-excursion, as that preserves point, which we don't want
880 (unwind-protect
881 (progn
882 (set-buffer (process-buffer process))
883 (goto-char te-saved-point)
884 (and (bufferp te-log-buffer)
885 (if (null (buffer-name te-log-buffer))
886 ;; killed
887 (setq te-log-buffer nil)
888 (set-buffer te-log-buffer)
889 (goto-char (point-max))
890 (insert-before-markers string)
891 (set-buffer (process-buffer process))))
892 (setq te-pending-output (nconc te-pending-output (list string)))
893 (te-update-pending-output-display)
894 (te-process-output (eq (current-buffer)
895 (window-buffer (selected-window))))
896 (set-buffer (process-buffer process))
897 (setq te-saved-point (point)))
898 (set-buffer obuf))))
899
900 ;; (A version of the following comment which might be distractingly offensive
901 ;; to some readers has been moved to term-nasty.el.)
902 ;; unix lacks ITS-style tty control...
903 (defun te-process-output (preemptible)
904 ;;>> There seems no good reason to ever disallow preemption
905 (setq preemptible t)
906 (catch 'te-process-output
907 (let ((buffer-read-only nil)
908 (string nil) ostring start char (matchpos nil))
909 (while (cdr te-pending-output)
910 (setq ostring string
911 start (car te-pending-output)
912 string (car (cdr te-pending-output))
913 char (aref string start))
914 (if (eq (setq start (1+ start)) (length string))
915 (progn (setq te-pending-output
916 (cons 0 (cdr (cdr te-pending-output)))
917 start 0
918 string (car (cdr te-pending-output)))
919 (te-update-pending-output-display))
920 (setcar te-pending-output start))
921 (if (and (> char ?\037) (< char ?\377))
922 (cond ((eolp)
923 ;; unread char
924 (if (eq start 0)
925 (setq te-pending-output
926 (cons 0 (cons (make-string 1 char)
927 (cdr te-pending-output))))
928 (setcar te-pending-output (1- start)))
929 (te-newline))
930 ((null string)
931 (delete-char 1) (insert char)
932 (te-redisplay-if-necessary 1))
933 (t
934 (let ((end (or (and (eq ostring string) matchpos)
935 (setq matchpos (string-match
936 "[\000-\037\177-\377]"
937 string start))
938 (length string))))
939 (delete-char 1) (insert char)
940 (setq char (point)) (end-of-line)
941 (setq end (min end (+ start (- (point) char))))
942 (goto-char char)
943 (if (eq end matchpos) (setq matchpos nil))
944 (delete-region (point) (+ (point) (- end start)))
945 (insert (if (and (eq start 0)
946 (eq end (length string)))
947 string
948 (substring string start end)))
949 (if (eq end (length string))
950 (setq te-pending-output
951 (cons 0 (cdr (cdr te-pending-output))))
952 (setcar te-pending-output end))
953 (te-redisplay-if-necessary (1+ (- end start))))))
954 ;; I suppose if I split the guts of this out into a separate
955 ;; function we could trivially emulate different terminals
956 ;; Who cares in any case? (Apart from stupid losers using rlogin)
957 (funcall
958 (if (eq char ?\^p)
959 (or (cdr (assq (te-get-char)
960 '((?= . te-move-to-position)
961 (?c . te-clear-rest-of-line)
962 (?C . te-clear-rest-of-screen)
963 (?\C-o . te-insert-lines)
964 (?\C-k . te-delete-lines)
965 ;; not necessary, but help sometimes.
966 (?\C-a . te-beginning-of-line)
967 (?\C-b . te-backward-char)
968 ;; should be C-d, but un*x
969 ;; pty's won't send \004 through!
970 ;; Can you believe this?
971 (?d . te-delete-char)
972 (?_ . te-insert-spaces)
973 ;; random
974 (?\C-f . te-forward-char)
975 (?\C-g . te-beep)
976 (?\C-j . te-down-vertically-or-scroll)
977 (?\C-l . te-clear-screen)
978 )))
979 'te-losing-unix)
980 (or (cdr (assq char
981 '((?\C-j . te-newline)
982 (?\177 . te-delete)
983 ;; Did I ask to be sent these characters?
984 ;; I don't remember doing so, either.
985 ;; (Perhaps some operating system or
986 ;; other is completely incompetent...)
987 (?\C-m . te-beginning-of-line)
988 (?\C-g . te-beep)
989 (?\C-h . te-backward-char)
990 (?\C-i . te-output-tab))))
991 'te-losing-unix)))
992 (te-redisplay-if-necessary 1))
993 (and preemptible
994 (input-pending-p)
995 ;; preemptible output! Oh my!!
996 (throw 'te-process-output t)))))
997 ;; We must update window-point in every window displaying our buffer
998 (walk-windows (lambda (w)
999 (when (and (not (eq w (selected-window)))
1000 (eq (window-buffer w) (current-buffer)))
1001 (set-window-point w (point))))))
1002
1003 (defun te-get-char ()
1004 (if (cdr te-pending-output)
1005 (let ((start (car te-pending-output))
1006 (string (car (cdr te-pending-output))))
1007 (prog1 (aref string start)
1008 (if (eq (setq start (1+ start)) (length string))
1009 (setq te-pending-output (cons 0 (cdr (cdr te-pending-output))))
1010 (setcar te-pending-output start))))
1011 (catch 'char
1012 (let ((filter (process-filter te-process)))
1013 (unwind-protect
1014 (progn
1015 (set-process-filter te-process
1016 (function (lambda (p s)
1017 (or (eq (length s) 1)
1018 (setq te-pending-output (list 1 s)))
1019 (throw 'char (aref s 0)))))
1020 (accept-process-output te-process))
1021 (set-process-filter te-process filter))))))
1022
1023
1024 (defun te-redisplay-if-necessary (length)
1025 (and (<= (setq te-redisplay-count (- te-redisplay-count length)) 0)
1026 (eq (current-buffer) (window-buffer (selected-window)))
1027 (waiting-for-user-input-p)
1028 (progn (te-update-pending-output-display)
1029 (sit-for 0)
1030 (setq te-redisplay-count terminal-redisplay-interval))))
1031
1032 (defun te-update-pending-output-display ()
1033 (if (null (cdr te-pending-output))
1034 (setq te-pending-output-info "")
1035 (let ((length (te-pending-output-length)))
1036 (if (< length 1500)
1037 (setq te-pending-output-info "")
1038 (setq te-pending-output-info (format "(%dK chars output pending) "
1039 (/ (+ length 512) 1024))))))
1040 (force-mode-line-update))
1041
1042 \f
1043 (defun te-sentinel (process message)
1044 (cond ((eq (process-status process) 'run))
1045 ((null (buffer-name (process-buffer process)))) ;deleted
1046 (t (let ((b (current-buffer)))
1047 (save-excursion
1048 (set-buffer (process-buffer process))
1049 (setq buffer-read-only nil)
1050 (fundamental-mode)
1051 (goto-char (point-max))
1052 (delete-blank-lines)
1053 (delete-horizontal-space)
1054 (insert "\n*******\n" message "*******\n"))
1055 (if (and (eq b (process-buffer process))
1056 (waiting-for-user-input-p))
1057 (progn (goto-char (point-max))
1058 (recenter -1)))))))
1059 \f
1060 (defvar te-stty-string "stty -nl erase '^?' kill '^u' intr '^c' echo pass8"
1061 "Shell command to set terminal modes for terminal emulator.")
1062 ;; This used to have `new' in it, but that loses outside BSD
1063 ;; and it's apparently not needed in BSD.
1064
1065 (defcustom explicit-shell-file-name nil
1066 "*If non-nil, is file name to use for explicitly requested inferior shell."
1067 :type '(choice (const :tag "None" nil)
1068 file)
1069 :group 'terminal)
1070
1071 ;;;###autoload
1072 (defun terminal-emulator (buffer program args &optional width height)
1073 "Under a display-terminal emulator in BUFFER, run PROGRAM on arguments ARGS.
1074 ARGS is a list of argument-strings. Remaining arguments are WIDTH and HEIGHT.
1075 BUFFER's contents are made an image of the display generated by that program,
1076 and any input typed when BUFFER is the current Emacs buffer is sent to that
1077 program as keyboard input.
1078
1079 Interactively, BUFFER defaults to \"*terminal*\" and PROGRAM and ARGS
1080 are parsed from an input-string using your usual shell.
1081 WIDTH and HEIGHT are determined from the size of the current window
1082 -- WIDTH will be one less than the window's width, HEIGHT will be its height.
1083
1084 To switch buffers and leave the emulator, or to give commands
1085 to the emulator itself (as opposed to the program running under it),
1086 type Control-^. The following character is an emulator command.
1087 Type Control-^ twice to send it to the subprogram.
1088 This escape character may be changed using the variable `terminal-escape-char'.
1089
1090 `Meta' characters may not currently be sent through the terminal emulator.
1091
1092 Here is a list of some of the variables which control the behaviour
1093 of the emulator -- see their documentation for more information:
1094 terminal-escape-char, terminal-scrolling, terminal-more-processing,
1095 terminal-redisplay-interval.
1096
1097 This function calls the value of terminal-mode-hook if that exists
1098 and is non-nil after the terminal buffer has been set up and the
1099 subprocess started."
1100 (interactive
1101 (cons (save-excursion
1102 (set-buffer (get-buffer-create "*terminal*"))
1103 (buffer-name (if (or (not (boundp 'te-process))
1104 (null te-process)
1105 (not (eq (process-status te-process)
1106 'run)))
1107 (current-buffer)
1108 (generate-new-buffer "*terminal*"))))
1109 (append
1110 (let* ((default-s
1111 ;; Default shell is same thing M-x shell uses.
1112 (or explicit-shell-file-name
1113 (getenv "ESHELL")
1114 (getenv "SHELL")
1115 "/bin/sh"))
1116 (s (read-string
1117 (format "Run program in emulator: (default %s) "
1118 default-s))))
1119 (if (equal s "")
1120 (list default-s '())
1121 (te-parse-program-and-args s))))))
1122 (switch-to-buffer buffer)
1123 (if (null width) (setq width (- (window-width (selected-window)) 1)))
1124 (if (null height) (setq height (- (window-height (selected-window)) 1)))
1125 (terminal-mode)
1126 (setq te-width width te-height height)
1127 (setq te-terminal-name (concat te-terminal-name-prefix
1128 (number-to-string te-width)
1129 (number-to-string te-height)))
1130 (setq mode-line-buffer-identification
1131 (list (format "Emacs terminal %dx%d: %%b " te-width te-height)
1132 'te-pending-output-info))
1133 (let ((buffer-read-only nil))
1134 (te-clear-screen))
1135 (let (process)
1136 (while (setq process (get-buffer-process (current-buffer)))
1137 (if (y-or-n-p (format "Kill process %s? " (process-name process)))
1138 (delete-process process)
1139 (error "Process %s not killed" (process-name process)))))
1140 (condition-case err
1141 (let ((process-environment
1142 (cons (concat "TERM=" te-terminal-name)
1143 (cons (concat "TERMCAP=" (te-create-termcap))
1144 (cons (concat "TERMINFO=" (te-create-terminfo))
1145 process-environment)))))
1146 (setq te-process
1147 (start-process "terminal-emulator" (current-buffer)
1148 "/bin/sh" "-c"
1149 ;; Yuck!!! Start a shell to set some terminal
1150 ;; control characteristics. Then start the
1151 ;; "env" program to setup the terminal type
1152 ;; Then finally start the program we wanted.
1153 (format "%s; exec %s"
1154 te-stty-string
1155 (mapconcat 'te-quote-arg-for-sh
1156 (cons program args) " "))))
1157 (set-process-filter te-process 'te-filter)
1158 (set-process-sentinel te-process 'te-sentinel))
1159 (error (fundamental-mode)
1160 (signal (car err) (cdr err))))
1161 (setq inhibit-quit t) ;sport death
1162 (use-local-map terminal-map)
1163 (run-hooks 'terminal-mode-hook)
1164 (message "Entering emacs terminal-emulator... Type %s %s for help"
1165 (single-key-description terminal-escape-char)
1166 (mapconcat 'single-key-description
1167 (where-is-internal 'te-escape-help terminal-escape-map t)
1168 " ")))
1169
1170
1171 (defun te-parse-program-and-args (s)
1172 (cond ((string-match "\\`\\([-a-zA-Z0-9+=_.@/:]+[ \t]*\\)+\\'" s)
1173 (let ((l ()) (p 0))
1174 (while p
1175 (setq l (cons (if (string-match
1176 "\\([-a-zA-Z0-9+=_.@/:]+\\)\\([ \t]+\\)*"
1177 s p)
1178 (prog1 (substring s p (match-end 1))
1179 (setq p (match-end 0))
1180 (if (eq p (length s)) (setq p nil)))
1181 (prog1 (substring s p)
1182 (setq p nil)))
1183 l)))
1184 (setq l (nreverse l))
1185 (list (car l) (cdr l))))
1186 ((and (string-match "[ \t]" s) (not (file-exists-p s)))
1187 (list shell-file-name (list "-c" (concat "exec " s))))
1188 (t (list s ()))))
1189
1190 (put 'terminal-mode 'mode-class 'special)
1191 ;; This is only separated out from function terminal-emulator
1192 ;; to keep the latter a little more manageable.
1193 (defun terminal-mode ()
1194 "Set up variables for use with the terminal-emulator.
1195 One should not call this -- it is an internal function
1196 of the terminal-emulator"
1197 (kill-all-local-variables)
1198 (buffer-disable-undo (current-buffer))
1199 (setq major-mode 'terminal-mode)
1200 (setq mode-name "terminal")
1201 ; (make-local-variable 'Helper-return-blurb)
1202 ; (setq Helper-return-blurb "return to terminal simulator")
1203 (setq mode-line-process '(":%s"))
1204 (setq buffer-read-only t)
1205 (setq truncate-lines t)
1206 (make-local-variable 'terminal-escape-char)
1207 (setq terminal-escape-char (default-value 'terminal-escape-char))
1208 (make-local-variable 'terminal-scrolling)
1209 (setq terminal-scrolling (default-value 'terminal-scrolling))
1210 (make-local-variable 'terminal-more-processing)
1211 (setq terminal-more-processing (default-value 'terminal-more-processing))
1212 (make-local-variable 'terminal-redisplay-interval)
1213 (setq terminal-redisplay-interval (default-value 'terminal-redisplay-interval))
1214 (make-local-variable 'te-width)
1215 (make-local-variable 'te-height)
1216 (make-local-variable 'te-process)
1217 (make-local-variable 'te-pending-output)
1218 (setq te-pending-output (list 0))
1219 (make-local-variable 'te-saved-point)
1220 (setq te-saved-point (point-min))
1221 (make-local-variable 'te-pending-output-info) ;for the mode line
1222 (setq te-pending-output-info "")
1223 (make-local-variable 'inhibit-quit)
1224 ;(setq inhibit-quit t)
1225 (make-local-variable 'te-log-buffer)
1226 (setq te-log-buffer nil)
1227 (make-local-variable 'te-more-count)
1228 (setq te-more-count -1)
1229 (make-local-variable 'te-redisplay-count)
1230 (setq te-redisplay-count terminal-redisplay-interval)
1231 ;(use-local-map terminal-mode-map)
1232 ;; terminal-mode-hook is called above in function terminal-emulator
1233 )
1234 \f
1235 ;;;; what a complete loss
1236
1237 (defun te-quote-arg-for-sh (string)
1238 (cond ((string-match "\\`[-a-zA-Z0-9+=_.@/:]+\\'"
1239 string)
1240 string)
1241 ((not (string-match "[$]" string))
1242 ;; "[\"\\]" are special to sh and the lisp reader in the same way
1243 (prin1-to-string string))
1244 (t
1245 (let ((harder "")
1246 (start 0)
1247 (end 0))
1248 (while (cond ((>= start (length string))
1249 nil)
1250 ;; this is the set of chars magic with "..." in `sh'
1251 ((setq end (string-match "[\"\\$]"
1252 string start))
1253 t)
1254 (t (setq harder (concat harder
1255 (substring string start)))
1256 nil))
1257 (setq harder (concat harder (substring string start end)
1258 ;; Can't use ?\\ since `concat'
1259 ;; unfortunately does prin1-to-string
1260 ;; on fixna. Amazing.
1261 "\\"
1262 (substring string
1263 end
1264 (1+ end)))
1265 start (1+ end)))
1266 (concat "\"" harder "\"")))))
1267
1268 (defun te-create-terminfo ()
1269 "Create and compile a terminfo entry for the virtual terminal. This is kept
1270 in the directory specified by `te-terminfo-directory'."
1271 (when (and system-uses-terminfo
1272 (not (file-exists-p (concat te-terminfo-directory
1273 (substring te-terminal-name-prefix 0 1)
1274 "/" te-terminal-name))))
1275 (let ( (terminfo
1276 (concat
1277 ;; The first newline avoids trouble with ncurses.
1278 (format "%s,\n\tmir, xon,cols#%d, lines#%d,"
1279 te-terminal-name te-width te-height)
1280 "bel=^P^G, clear=^P\\f, cr=^P^A, cub1=^P^B, cud1=^P\\n,"
1281 "cuf1=^P^F, cup=^P=%p1%'\\s'%+%c%p2%'\\s'%+%c,"
1282 "dch=^Pd%p1%'\\s'%+%c, dch1=^Pd!, dl=^P^K%p1%'\\s'%+%c,"
1283 "dl1=^P^K!, ed=^PC, el=^Pc, home=^P=\\s\\s,"
1284 "ich=^P_%p1%'\\s'%+%c, ich1=^P_!, il=^P^O%p1%'\\s'%+%c,"
1285 ;; The last newline avoids trouble with ncurses.
1286 "il1=^P^O!, ind=^P\\n, nel=\\n,\n"))
1287 ;; This is the desired name for the source file.
1288 (file-name (concat te-terminfo-directory te-terminal-name ".tif")) )
1289 (make-directory te-terminfo-directory t)
1290 (let ((temp-file
1291 (make-temp-file (expand-file-name "tif" te-terminfo-directory))))
1292 ;; Store the source file under a random temp name.
1293 (with-temp-file temp-file
1294 (insert terminfo))
1295 ;; Rename it to the desired name.
1296 ;; We use this roundabout approach
1297 ;; to avoid any risk of writing a name that
1298 ;; was michievouslyt set up as a symlink.
1299 (rename-file temp-file file-name))
1300 ;; Now compile that source to make the binary that the
1301 ;; programs actually use.
1302 (let ((process-environment
1303 (cons (concat "TERMINFO="
1304 (directory-file-name te-terminfo-directory))
1305 process-environment)))
1306 (set-process-sentinel (start-process "tic" nil "tic" file-name)
1307 'te-tic-sentinel))))
1308 (directory-file-name te-terminfo-directory))
1309
1310 (defun te-create-termcap ()
1311 "Create a termcap entry for the virtual terminal"
1312 ;; Because of Unix Brain Death(tm), we can't change
1313 ;; the terminal type of a running process, and so
1314 ;; terminal size and scrollability are wired-down
1315 ;; at this point. ("Detach? What's that?")
1316 (concat (format "%s:co#%d:li#%d:%s"
1317 ;; Sigh. These can't be dynamically changed.
1318 te-terminal-name te-width te-height (if terminal-scrolling
1319 "" "ns:"))
1320 ;;-- Basic things
1321 ;; cursor-motion, bol, forward/backward char
1322 "cm=^p=%+ %+ :cr=^p^a:le=^p^b:nd=^p^f:"
1323 ;; newline, clear eof/eof, audible bell
1324 "nw=^j:ce=^pc:cd=^pC:cl=^p^l:bl=^p^g:"
1325 ;; insert/delete char/line
1326 "IC=^p_%+ :DC=^pd%+ :AL=^p^o%+ :DL=^p^k%+ :"
1327 ;;-- Not-widely-known (ie nonstandard) flags, which mean
1328 ;; o writing in the last column of the last line
1329 ;; doesn't cause idiotic scrolling, and
1330 ;; o don't use idiotische c-s/c-q sogenannte
1331 ;; ``flow control'' auf keinen Fall.
1332 "LP:NF:"
1333 ;;-- For stupid or obsolete programs
1334 "ic=^p_!:dc=^pd!:al=^p^o!:dl=^p^k!:ho=^p= :"
1335 ;;-- For disgusting programs.
1336 ;; (VI? What losers need these, I wonder?)
1337 "im=:ei=:dm=:ed=:mi:do=^p^j:nl=^p^j:bs:")
1338 )
1339
1340 (defun te-tic-sentinel (proc state-change)
1341 "If tic has finished, delete the .tif file"
1342 (if (equal state-change "finished
1343 ")
1344 (delete-file (concat te-terminfo-directory te-terminal-name ".tif"))))
1345
1346 (provide 'terminal)
1347
1348 ;;; arch-tag: 0ae1d7d7-90ef-4566-a531-6e7ff8c79b2f
1349 ;;; terminal.el ends here