From: Gerd Moellmann Date: Wed, 28 Feb 2001 15:03:11 +0000 (+0000) Subject: (xm_arm_callback): Don't compare widgets with `None', X-Git-Tag: emacs-pretest-21.0.99~82 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=81e3f05877756fdc18c42478717193a4d56e784b;p=emacs.git (xm_arm_callback): Don't compare widgets with `None', use NULL instead. --- diff --git a/lwlib/lwlib-Xm.c b/lwlib/lwlib-Xm.c index 16c8a947a4a..38142d79387 100644 --- a/lwlib/lwlib-Xm.c +++ b/lwlib/lwlib-Xm.c @@ -266,7 +266,7 @@ xm_arm_callback (w, client_data, call_data) widget_instance *instance; /* Get the id of the menu bar or popup menu this widget is in. */ - while (w != None) + while (w != NULL) { if (XmIsRowColumn (w)) { @@ -280,7 +280,7 @@ xm_arm_callback (w, client_data, call_data) w = XtParent (w); } - if (w != None) + if (w != NULL) { instance = lw_get_widget_instance (w); if (instance && instance->info->highlight_cb)