diff options
| author | Richard M. Stallman | 1996-06-26 18:16:08 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1996-06-26 18:16:08 +0000 |
| commit | f000f5c5ac061ad8075841b9c8fb2019ae5fc531 (patch) | |
| tree | c83a332fa81dde0ce772ce91aece463382f9acdd /src | |
| parent | be166d172626b2189fcb2be89f2cc14a080632da (diff) | |
| download | emacs-f000f5c5ac061ad8075841b9c8fb2019ae5fc531.tar.gz emacs-f000f5c5ac061ad8075841b9c8fb2019ae5fc531.zip | |
(XTread_socket, Xatom_wm_save_yourself clause):
Don't call XSetCommand if f is 0.
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 35fa4cf4241..977e1b8020f 100644 --- a/src/xterm.c +++ b/src/xterm.c | |||
| @@ -3354,7 +3354,7 @@ XTread_socket (sd, bufp, numchars, waitp, expected) | |||
| 3354 | XSetCommand (FRAME_X_DISPLAY (f), | 3354 | XSetCommand (FRAME_X_DISPLAY (f), |
| 3355 | event.xclient.window, | 3355 | event.xclient.window, |
| 3356 | initial_argv, initial_argc); | 3356 | initial_argv, initial_argc); |
| 3357 | else | 3357 | else if (f) |
| 3358 | XSetCommand (FRAME_X_DISPLAY (f), | 3358 | XSetCommand (FRAME_X_DISPLAY (f), |
| 3359 | event.xclient.window, | 3359 | event.xclient.window, |
| 3360 | 0, 0); | 3360 | 0, 0); |