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
8b0ba111
Commit
8b0ba111
authored
May 03, 2006
by
Richard M. Stallman
Browse files
(read_minibuf): Don't use read_minibuf_noninteractive
when inside a keyboard macro.
parent
5719a99d
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
6 additions
and
1 deletion
+6
-1
src/ChangeLog
src/ChangeLog
+5
-0
src/minibuf.c
src/minibuf.c
+1
-1
No files found.
src/ChangeLog
View file @
8b0ba111
2006-05-03 Richard Stallman <rms@gnu.org>
* minibuf.c (read_minibuf): Don't use read_minibuf_noninteractive
when inside a keyboard macro.
2006-05-02 Andreas Schwab <schwab@suse.de>
* xmenu.c (restore_menu_items): Return a value.
...
...
src/minibuf.c
View file @
8b0ba111
...
...
@@ -523,7 +523,7 @@ read_minibuf (map, initial, prompt, backup_n, expflag,
build_string
(
"Command attempted to use minibuffer while in minibuffer"
));
}
if
(
noninteractive
)
if
(
noninteractive
&&
NILP
(
Vexecuting_kbd_macro
)
)
{
val
=
read_minibuf_noninteractive
(
map
,
initial
,
prompt
,
make_number
(
pos
),
...
...
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