aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorGerd Moellmann2000-08-03 20:22:17 +0000
committerGerd Moellmann2000-08-03 20:22:17 +0000
commit6a2bfc84786a28b942082ea28b00b9940ac169e5 (patch)
tree3523cb97db4b96a47aedc09e18ca3c0df6035457 /src
parentd16700638b5681e86d5d62194748548da7bcee6f (diff)
downloademacs-6a2bfc84786a28b942082ea28b00b9940ac169e5.tar.gz
emacs-6a2bfc84786a28b942082ea28b00b9940ac169e5.zip
(update_frame_menubar): Use NULL instead of 0 at the end
of variable argument lists of XtVaGetValues and XtVaSetValues.
Diffstat (limited to 'src')
-rw-r--r--src/xmenu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xmenu.c b/src/xmenu.c
index 2b27478f30d..8da7bf7b311 100644
--- a/src/xmenu.c
+++ b/src/xmenu.c
@@ -1603,7 +1603,7 @@ update_frame_menubar (f)
1603 { 1603 {
1604 XtManageChild (x->menubar_widget); 1604 XtManageChild (x->menubar_widget);
1605 XtMapWidget (x->menubar_widget); 1605 XtMapWidget (x->menubar_widget);
1606 XtVaSetValues (x->menubar_widget, XtNmappedWhenManaged, 1, 0); 1606 XtVaSetValues (x->menubar_widget, XtNmappedWhenManaged, 1, NULL);
1607 } 1607 }
1608 1608
1609 /* Re-manage the text-area widget, and then thrash the sizes. */ 1609 /* Re-manage the text-area widget, and then thrash the sizes. */