diff options
| author | Juri Linkov | 2019-10-01 23:15:03 +0300 |
|---|---|---|
| committer | Juri Linkov | 2019-10-01 23:15:03 +0300 |
| commit | 2698d3dba2e9858b026ed127d4de3f86810a5ef3 (patch) | |
| tree | 8e9b8f194cfcad8af83a4174a0105bbc691f06d6 /src/term.c | |
| parent | 25f45d710e91a7c1049f056ff27bc3e6968f5624 (diff) | |
| parent | 3f981a0a89bca47a207fb362485f07e7322bb145 (diff) | |
| download | emacs-2698d3dba2e9858b026ed127d4de3f86810a5ef3.tar.gz emacs-2698d3dba2e9858b026ed127d4de3f86810a5ef3.zip | |
Merge branch 'feature/tabs'
Diffstat (limited to 'src/term.c')
| -rw-r--r-- | src/term.c | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/term.c b/src/term.c index 5f70c7a3d4f..642010549bf 100644 --- a/src/term.c +++ b/src/term.c | |||
| @@ -2341,7 +2341,8 @@ frame's terminal). */) | |||
| 2341 | was suspended. */ | 2341 | was suspended. */ |
| 2342 | get_tty_size (fileno (t->display_info.tty->input), &width, &height); | 2342 | get_tty_size (fileno (t->display_info.tty->input), &width, &height); |
| 2343 | if (width != old_width || height != old_height) | 2343 | if (width != old_width || height != old_height) |
| 2344 | change_frame_size (f, width, height - FRAME_MENU_BAR_LINES (f), | 2344 | change_frame_size (f, width, height - FRAME_MENU_BAR_LINES (f) |
| 2345 | - FRAME_TAB_BAR_LINES (f), | ||
| 2345 | 0, 0, 0, 0); | 2346 | 0, 0, 0, 0); |
| 2346 | SET_FRAME_VISIBLE (XFRAME (t->display_info.tty->top_frame), 1); | 2347 | SET_FRAME_VISIBLE (XFRAME (t->display_info.tty->top_frame), 1); |
| 2347 | } | 2348 | } |