diff options
| author | Gerd Moellmann | 2001-02-28 15:06:04 +0000 |
|---|---|---|
| committer | Gerd Moellmann | 2001-02-28 15:06:04 +0000 |
| commit | f1f4d34564f8c4feddd7363de15bee62a20c039d (patch) | |
| tree | c8ded32ba4f748dae67b9a34a9f988d79b555bbe /src | |
| parent | dbc64aa75a52cf1a9e93bf1b1da783e27f18e6cb (diff) | |
| download | emacs-f1f4d34564f8c4feddd7363de15bee62a20c039d.tar.gz emacs-f1f4d34564f8c4feddd7363de15bee62a20c039d.zip | |
(x_set_window_size): Don't use `None' with widgets; use
NULL instead.
Diffstat (limited to 'src')
| -rw-r--r-- | src/xterm.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) | |||
| 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. |