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
d1fa2e8a
Commit
d1fa2e8a
authored
Mar 09, 1994
by
Karl Heuer
Browse files
(Fcall_interactively): Don't select an active minibuffer.
parent
8c2c32d2
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
7 additions
and
1 deletion
+7
-1
src/callint.c
src/callint.c
+7
-1
No files found.
src/callint.c
View file @
d1fa2e8a
...
...
@@ -328,7 +328,13 @@ Otherwise, this is done only if an arg is read using the minibuffer.")
&&
XTYPE
(
event
=
XCONS
(
event
)
->
cdr
)
==
Lisp_Cons
&&
XTYPE
(
event
=
XCONS
(
event
)
->
car
)
==
Lisp_Cons
&&
XTYPE
(
event
=
XCONS
(
event
)
->
car
)
==
Lisp_Window
)
Fselect_window
(
event
);
{
if
(
MINI_WINDOW_P
(
XWINDOW
(
window
))
&&
NILP
(
call1
(
intern
(
"minibuffer-window-active-p"
),
window
)))
error
(
"Attempt to select inactive minibuffer window"
);
Fselect_window
(
event
);
}
string
++
;
}
else
break
;
...
...
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