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
d6a31e9f
Commit
d6a31e9f
authored
Sep 12, 2005
by
Kim F. Storm
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fdescribe_buffer_bindings): Reload `translate'
after insert which runs signal_after_change.
parent
fa056b08
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
1 deletion
+4
-1
src/keymap.c
src/keymap.c
+4
-1
No files found.
src/keymap.c
View file @
d6a31e9f
...
...
@@ -750,7 +750,7 @@ usage: (map-keymap FUNCTION KEYMAP) */)
Fsignal
(
Qinvalid_function
,
Fcons
(
function
,
Qnil
));
if
(
!
NILP
(
sort_first
))
return
call3
(
intern
(
"map-keymap-internal"
),
function
,
keymap
,
Qt
);
map_keymap
(
keymap
,
map_keymap_call
,
function
,
NULL
,
1
);
return
Qnil
;
}
...
...
@@ -2844,6 +2844,9 @@ You type Translation\n\
insert
(
buf
,
bufend
-
buf
);
insert
(
"
\n
"
,
1
);
/* Insert calls signal_after_change which may GC. */
translate
=
SDATA
(
Vkeyboard_translate_table
);
}
insert
(
"
\n
"
,
1
);
...
...
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