]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/xwidget.c (Fmake_xwidget): Set the initial value of `query-on-exit'
authorGrégoire Jadi <gregoire.jadi@gmail.com>
Tue, 16 Jul 2013 17:39:21 +0000 (19:39 +0200)
committerGrégoire Jadi <gregoire.jadi@gmail.com>
Tue, 16 Jul 2013 17:39:21 +0000 (19:39 +0200)
flag to t (kill_without_query = !query-on-exit).

src/xwidget.c

index 9a039d9a745b86479dcd1c2110839ab83a2e5c39..ad4e07c6dd2a9959b7f02c433055c17cd452817f 100644 (file)
@@ -209,7 +209,7 @@ TYPE is a symbol which can take one of the following values:
   
   xw->height = XFASTINT(height);
   xw->width = XFASTINT(width);
-  xw->kill_without_query = 1;
+  xw->kill_without_query = 0;
   XSETXWIDGET (val, xw); // set the vectorlike_header of VAL with the correct value
   Vxwidget_list = Fcons (val, Vxwidget_list);
   xw->widgetwindow_osr = NULL;