repo.or.cz
/
emacs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Add standard library headers.
[emacs.git]
/
lisp
/
term
/
bobcat.el
blob
7abe538ef77bfd376a97a363aa2040a04858ff67
1
;;; HP terminals usually encourage using ^H as the rubout character
2
3
(
let
((
the-table
(
make-string
128 0
)))
4
(
let
((
i
0
))
5
(
while
(<
i
128
)
6
(
aset
the-table i i
)
7
(
setq
i
(
1
+
i
))))
8
;; Swap ^H and DEL
9
(
aset
the-table ?
\177
?\^h
)
10
(
aset
the-table ?\^h ?
\177
)
11
(
setq
keyboard-translate-table the-table
))