1 ;;; internal.el ---support for PC keyboards and screens, internal terminal
3 ;; Copyright (C) 1993, 1994 Free Software Foundation, Inc.
5 ;; Author: Morten Welinder <terra@diku.dk>
7 ;; This file is part of GNU Emacs.
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)
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.
19 ;; You should have received a copy of the GNU General Public License
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.
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)
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 ;; ---------------------------------------------------------------------------
54 ;; We want to do this when Emacs is started because it depends on the
59 (modify-syntax-entry ch sy text-mode-syntax-table)
60 (if (boundp 'tex-mode-syntax-table)
61 (modify-syntax-entry ch sy tex-mode-syntax-table))
62 (modify-syntax-entry ch sy (standard-syntax-table))
64 (table (standard-case-table))
65 ;; The following are strings of letters, first lower then upper case.
66 ;; This will look funny on terminals which display other code pages.
70 "‡€�š‚�ƒ¶„Ž…·†�ÆÇ µˆÒ‰ÓŠÔ‹ØŒ×�Þ¡Ö‘’“â”™•ã¢à›�–ê£é—ë˜Yìí¡I£é¤¥ÐÑçè")
72 "‡€�š‚�ƒA„Ž…A†�ˆE‰EŠE‹IŒI�I‘’“O”™•O–U£U˜Y›� A¡I¢O£U¤¥")
74 (t "‡€�š‚�ƒA„Ž…A†�ˆE‰EŠE‹IŒI�I‘’“O”™•O–U£U˜Y A¡I¢O£U¤¥"))))
77 (funcall modify i "_")
81 (while (< i (length chars))
82 (let ((ch1 (aref chars i))
83 (ch2 (aref chars (1+ i))))
85 (set-case-syntax-pair ch2 ch1 table))
88 (mapcar (lambda (b) (set-buffer b) (set-case-table table))
90 (set-standard-case-table table))
92 ;;; internal.el ends here