aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/fns.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/fns.c b/src/fns.c
index 216852f893e..bd3893f7538 100644
--- a/src/fns.c
+++ b/src/fns.c
@@ -3276,7 +3276,7 @@ is nil and `use-dialog-box' is non-nil. */)
3276 Fcons (Fcons (build_string ("No"), Qnil), 3276 Fcons (Fcons (build_string ("No"), Qnil),
3277 Qnil)); 3277 Qnil));
3278 menu = Fcons (prompt, pane); 3278 menu = Fcons (prompt, pane);
3279 obj = Fx_popup_dialog (Qt, menu); 3279 obj = Fx_popup_dialog (Qt, menu, Qnil);
3280 answer = !NILP (obj); 3280 answer = !NILP (obj);
3281 break; 3281 break;
3282 } 3282 }
@@ -3408,7 +3408,7 @@ is nil, and `use-dialog-box' is non-nil. */)
3408 Qnil)); 3408 Qnil));
3409 GCPRO1 (pane); 3409 GCPRO1 (pane);
3410 menu = Fcons (prompt, pane); 3410 menu = Fcons (prompt, pane);
3411 obj = Fx_popup_dialog (Qt, menu); 3411 obj = Fx_popup_dialog (Qt, menu, Qnil);
3412 UNGCPRO; 3412 UNGCPRO;
3413 return obj; 3413 return obj;
3414 } 3414 }