mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-04 08:47:11 +00:00
8cbd7bed2d
* lisp/faces.el (tty-create-frame-with-faces): Set up faces and background mode only after the terminal has been initialized. (frame-set-background-mode): Handle the 'background-mode terminal parameter. (tty-run-terminal-initialization): Add type option. * lisp/term/README: Update. * lisp/term/rxvt.el: Simplify. * lisp/term/xterm.el: Simplify and fix. * lisp/term/*.el: Simplify and fix. git-archimport-id: lorentey@elte.hu--2004/emacs--multi-tty--0--patch-564
11 lines
325 B
EmacsLisp
11 lines
325 B
EmacsLisp
;; -*- no-byte-compile: t -*-
|
|
|
|
(defun terminal-init-bobcat ()
|
|
"Terminal initialization function for bobcat."
|
|
;; HP terminals usually encourage using ^H as the rubout character
|
|
(keyboard-translate ?\177 ?\^h)
|
|
(keyboard-translate ?\^h ?\177))
|
|
|
|
;;; arch-tag: 754e4520-0a3e-4e6e-8ca5-9481b1f85cf7
|
|
;;; bobcat.el ends here
|