view lisp/term/vt300.el @ 112298:8ed3ecdb4fd4

* lisp.h: Redo flags and XSET slightly to avoid overflow diagnostics.
author Paul Eggert <eggert@cs.ucla.edu>
date Sun, 16 Jan 2011 23:17:23 -0800
parents ef719132ddfa
children
line wrap: on
line source

;; -*- no-byte-compile: t -*-
(defun terminal-init-vt300 ()
  "Terminal initialization function for vt300."
  (tty-run-terminal-initialization (selected-frame) "vt100")
  ;; Make F11 an escape key.
  (define-key input-decode-map "\e[23~" [f11]) ;Probably redundant.
  (define-key local-function-key-map [f11] [?\e]))

;;; vt300.el ends here