diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/frame.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/frame.c b/src/frame.c index affe9180fda..4a526c040d5 100644 --- a/src/frame.c +++ b/src/frame.c | |||
| @@ -563,8 +563,8 @@ make_terminal_frame (struct terminal *terminal) | |||
| 563 | Lisp_Object frame; | 563 | Lisp_Object frame; |
| 564 | char name[20]; | 564 | char name[20]; |
| 565 | 565 | ||
| 566 | if (terminal->deleted) | 566 | if (!terminal->name) |
| 567 | error ("Terminal is being deleted, can't create new frames on it"); | 567 | error ("Terminal is not live, can't create new frames on it"); |
| 568 | 568 | ||
| 569 | f = make_frame (1); | 569 | f = make_frame (1); |
| 570 | 570 | ||