Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
267d5b95
Commit
267d5b95
authored
May 12, 1997
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(iso-accents-compose): Return composed character directly for execution.
parent
280e8e04
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
7 deletions
+5
-7
lisp/international/iso-acc.el
lisp/international/iso-acc.el
+5
-7
No files found.
lisp/international/iso-acc.el
View file @
267d5b95
...
...
@@ -275,13 +275,11 @@ the language you choose).")
(
entry
(
cdr
(
assq
second-char
list
))))
(
if
entry
;; Found it: return the mapped char
(
if
(
and
enable-multibyte-characters
(
>=
entry
?\200
))
(
let
((
char
(
+
iso-accents-insert-offset
entry
)))
(
setq
unread-command-events
(
cons
(
list
char
)
unread-command-events
))
(
vector
?\C-q
))
(
vector
entry
))
(
vector
(
if
(
and
enable-multibyte-characters
(
>=
entry
?\200
))
(
+
iso-accents-insert-offset
entry
)
entry
))
;; Otherwise, advance and schedule the second key for execution.
(
setq
unread-command-events
(
cons
(
list
second-char
)
unread-command-events
))
...
...
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