Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
b2c9579f
Commit
b2c9579f
authored
Jan 13, 1992
by
Jim Blandy
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Initial revision
parent
bdd512ed
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
12 additions
and
0 deletions
+12
-0
lisp/term/apollo.el
lisp/term/apollo.el
+1
-0
lisp/term/bobcat.el
lisp/term/bobcat.el
+11
-0
No files found.
lisp/term/apollo.el
0 → 100644
View file @
b2c9579f
(
load
"term/vt100"
)
lisp/term/bobcat.el
0 → 100644
View file @
b2c9579f
;;; HP terminals usually encourage using ^H as the rubout character
(
let
((
the-table
(
make-string
128
0
)))
(
let
((
i
0
))
(
while
(
<
i
128
)
(
aset
the-table
i
i
)
(
setq
i
(
1+
i
))))
;; Swap ^H and DEL
(
aset
the-table
?\177
?\^h
)
(
aset
the-table
?\^h
?\177
)
(
setq
keyboard-translate-table
the-table
))
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment