From f1f4d34564f8c4feddd7363de15bee62a20c039d Mon Sep 17 00:00:00 2001 From: Gerd Moellmann Date: Wed, 28 Feb 2001 15:06:04 +0000 Subject: [PATCH] (x_set_window_size): Don't use `None' with widgets; use NULL instead. --- src/xterm.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xterm.c b/src/xterm.c index c0e752af452..9c75606b53b 100644 --- a/src/xterm.c +++ b/src/xterm.c @@ -11996,7 +11996,7 @@ x_set_window_size (f, change_gravity, cols, rows) #ifdef USE_X_TOOLKIT - if (f->output_data.x->widget != None) + if (f->output_data.x->widget != NULL) { /* The x and y position of the widget is clobbered by the call to XtSetValues within EmacsFrameSetCharSize. -- 2.39.5