projects
/
emacs.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
2260e48
)
Fix typo in fix for Bug#33498
author
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 6 Mar 2019 19:04:57 +0000
(11:04 -0800)
committer
Paul Eggert
<eggert@cs.ucla.edu>
Wed, 6 Mar 2019 19:05:19 +0000
(11:05 -0800)
* src/frame.c (delete_frame): Fix typo in previous patch,
which caused GCC to complain about the use of an uninitialized
variable.
src/frame.c
patch
|
blob
|
history
diff --git
a/src/frame.c
b/src/frame.c
index 3d83dc0a0d8b0fcdb36a93c398b44fb3f2b5f89b..1219569068efb122064983949c865f47ff247c89 100644
(file)
--- a/
src/frame.c
+++ b/
src/frame.c
@@
-2236,7
+2236,7
@@
delete_frame (Lisp_Object frame, Lisp_Object force)
for at least one other frame - so make it visible
and quit. */
if (!FRAME_VISIBLE_P (f1) && !FRAME_ICONIFIED_P (f1))
- Fmake_frame_visible (
frame1
);
+ Fmake_frame_visible (
minibuffer_child_frame
);
return Qnil;
}