(speedbar-frame-parameters) Add : to custom prompt.
[bpt/emacs.git] / lisp / term / internal.el
CommitLineData
c6a6499f 1;;; internal.el --- support for PC internal terminal -*- coding: raw-text; -*-
c8b836f6 2
870975a1 3;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
c8b836f6
RS
4
5;; Author: Morten Welinder <terra@diku.dk>
c8b836f6
RS
6
7;; This file is part of GNU Emacs.
8
9;; GNU Emacs is free software; you can redistribute it and/or modify
10;; it under the terms of the GNU General Public License as published by
11;; the Free Software Foundation; either version 2, or (at your option)
12;; any later version.
13
14;; GNU Emacs is distributed in the hope that it will be useful,
15;; but WITHOUT ANY WARRANTY; without even the implied warranty of
16;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17;; GNU General Public License for more details.
18
19;; You should have received a copy of the GNU General Public License
2fe590dc
EN
20;; along with GNU Emacs; see the file COPYING. If not, write to the
21;; Free Software Foundation, Inc., 59 Temple Place - Suite 330,
22;; Boston, MA 02111-1307, USA.
23
24;;; Code:
25
c8b836f6
RS
26;; ---------------------------------------------------------------------------
27;; screen setup -- that's easy!
28(standard-display-8bit 127 254)
29;; ---------------------------------------------------------------------------
30;; keyboard setup -- that's simple!
31(set-input-mode nil nil 0)
c8b836f6
RS
32(define-key function-key-map [backspace] "\177") ; Normal behaviour for BS
33(define-key function-key-map [delete] "\C-d") ; ... and Delete
34(define-key function-key-map [tab] [?\t])
35(define-key function-key-map [linefeed] [?\n])
36(define-key function-key-map [clear] [11])
37(define-key function-key-map [return] [13])
38(define-key function-key-map [escape] [?\e])
39(define-key function-key-map [M-backspace] [?\M-\d])
40(define-key function-key-map [M-delete] [?\M-\d])
41(define-key function-key-map [M-tab] [?\M-\t])
42(define-key function-key-map [M-linefeed] [?\M-\n])
43(define-key function-key-map [M-clear] [?\M-\013])
44(define-key function-key-map [M-return] [?\M-\015])
45(define-key function-key-map [M-escape] [?\M-\e])
46(put 'backspace 'ascii-character 127)
47(put 'delete 'ascii-character 127)
48(put 'tab 'ascii-character ?\t)
49(put 'linefeed 'ascii-character ?\n)
50(put 'clear 'ascii-character 12)
51(put 'return 'ascii-character 13)
52(put 'escape 'ascii-character ?\e)
53;; ---------------------------------------------------------------------------
092af6d8
RS
54
55;;; internal.el ends here
56