]> git.eshelyaron.com Git - emacs.git/commitdiff
* src/xwidget.c (Fmake_xwidget): Use XSETXWIDGET instead of XSETPSEUDOVECTOR.
authorGrégoire Jadi <gregoire.jadi@gmail.com>
Fri, 28 Jun 2013 15:16:47 +0000 (17:16 +0200)
committerGrégoire Jadi <gregoire.jadi@gmail.com>
Fri, 28 Jun 2013 15:16:47 +0000 (17:16 +0200)
src/xwidget.c

index 2f5e423ce427941d51b010cb0e8323e5ae1e2ac4..f0f1b9870056aef5cb2cc261aa3096571f7ccd20 100644 (file)
@@ -215,7 +215,7 @@ TYPE is a symbol which can take one of the following values:
   
   xw->height = XFASTINT(height);
   xw->width = XFASTINT(width);
-  XSETPSEUDOVECTOR (val, xw, PVEC_XWIDGET); // set the vectorlike_header of VAL with the correct value
+  XSETXWIDGET (val, xw); // set the vectorlike_header of VAL with the correct value
   Vxwidget_list = Fcons (val, Vxwidget_list);
   xw->widgetwindow_osr = NULL;
   xw->widget_osr = NULL;