comparison src/xterm.c @ 36442:7fda58b1a204

(x_set_window_size): Don't use `None' with widgets; use NULL instead.
author Gerd Moellmann <gerd@gnu.org>
date Wed, 28 Feb 2001 15:06:04 +0000
parents 94d6ad393a74
children 488c4787ec0a
comparison
equal deleted inserted replaced
36441:861557fe5809 36442:7fda58b1a204
11994 { 11994 {
11995 BLOCK_INPUT; 11995 BLOCK_INPUT;
11996 11996
11997 #ifdef USE_X_TOOLKIT 11997 #ifdef USE_X_TOOLKIT
11998 11998
11999 if (f->output_data.x->widget != None) 11999 if (f->output_data.x->widget != NULL)
12000 { 12000 {
12001 /* The x and y position of the widget is clobbered by the 12001 /* The x and y position of the widget is clobbered by the
12002 call to XtSetValues within EmacsFrameSetCharSize. 12002 call to XtSetValues within EmacsFrameSetCharSize.
12003 This is a real kludge, but I don't understand Xt so I can't 12003 This is a real kludge, but I don't understand Xt so I can't
12004 figure out a correct fix. Can anyone else tell me? -- rms. */ 12004 figure out a correct fix. Can anyone else tell me? -- rms. */