Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
224c62c6
Commit
224c62c6
authored
Oct 12, 1995
by
Richard M. Stallman
Browse files
Handle aliases dead-acute,...
parent
7f73dc9d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
16 additions
and
0 deletions
+16
-0
lisp/international/iso-transl.el
lisp/international/iso-transl.el
+16
-0
No files found.
lisp/international/iso-transl.el
View file @
224c62c6
...
...
@@ -40,6 +40,22 @@
(
?\~
.
mute-asciitilde
))
"Mapping of ASCII characters to their corresponding dead-key symbols."
)
;; Some X servers use these alternate names.
(
or
key-translation-map
(
setq
key-translation-map
(
make-sparse-keymap
)))
(
define-key
key-translation-map
[dead-acute]
[mute-acute]
)
(
define-key
key-translation-map
[dead-grave]
[mute-grave]
)
(
define-key
key-translation-map
[dead-diaeresis]
[mute-diaeresis]
)
(
define-key
key-translation-map
[dead-asciicircum]
[mute-asciicircum]
)
(
define-key
key-translation-map
[dead-asciitilde]
[mute-asciitilde]
)
;; Someone reports that these keys don't work if shifted.
;; This might fix it--no word yet.
(
define-key
key-translation-map
[S-dead-acute]
[mute-acute]
)
(
define-key
key-translation-map
[S-dead-grave]
[mute-grave]
)
(
define-key
key-translation-map
[S-dead-diaeresis]
[mute-diaeresis]
)
(
define-key
key-translation-map
[S-dead-asciicircum]
[mute-asciicircum]
)
(
define-key
key-translation-map
[S-dead-asciitilde]
[mute-asciitilde]
)
;; The two-character mnemonics are intended to be available in all languages.
;; The ones beginning with `*' have one-character synonyms, but a
;; language-specific table might override the short form for its own use.
...
...
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