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
30e13e56
Commit
30e13e56
authored
Mar 14, 1995
by
Richard M. Stallman
Browse files
(read_minibuf): Save Voverriding_local_map.
(read_minibuf_unwind): Restore Voverriding_local_map.
parent
c63dc4a2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
1 deletion
+6
-1
src/minibuf.c
src/minibuf.c
+6
-1
No files found.
src/minibuf.c
View file @
30e13e56
...
...
@@ -98,6 +98,8 @@ Lisp_Object Quser_variable_p;
/* Non-nil means it is the window for C-M-v to scroll
when the minibuffer is selected. */
extern
Lisp_Object
Vminibuf_scroll_window
;
extern
Lisp_Object
Voverriding_local_map
;
/* Actual minibuffer invocation. */
...
...
@@ -160,7 +162,8 @@ read_minibuf (map, initial, prompt, backup_n, expflag, histvar, histpos)
Fcons
(
Vcurrent_prefix_arg
,
Fcons
(
Vminibuffer_history_position
,
Fcons
(
Vminibuffer_history_variable
,
minibuf_save_list
))))));
Fcons
(
Voverriding_local_map
,
minibuf_save_list
)))))));
minibuf_prompt_width
=
0
;
/* xdisp.c puts in the right value. */
minibuf_prompt
=
Fcopy_sequence
(
prompt
);
Vminibuffer_history_position
=
histpos
;
...
...
@@ -403,6 +406,8 @@ read_minibuf_unwind (data)
minibuf_save_list
=
Fcdr
(
minibuf_save_list
);
Vminibuffer_history_variable
=
Fcar
(
minibuf_save_list
);
minibuf_save_list
=
Fcdr
(
minibuf_save_list
);
Voverriding_local_map
=
Fcar
(
minibuf_save_list
);
minibuf_save_list
=
Fcdr
(
minibuf_save_list
);
}
...
...
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