diff options
| author | Gregory Heytings | 2022-07-21 12:37:45 +0200 |
|---|---|---|
| committer | Gregory Heytings | 2022-07-21 12:37:45 +0200 |
| commit | 616da8fa8efa9023f56fa731072d877e2150afbc (patch) | |
| tree | cabef8906fe8186c67899936e8b28640daeadb06 /src/window.c | |
| parent | 51f8e86374a57efe5b8e5c31d96078e63c023da4 (diff) | |
| parent | e09c056a440e78afd0e1920250714bc6de6ccf4f (diff) | |
| download | emacs-616da8fa8efa9023f56fa731072d877e2150afbc.tar.gz emacs-616da8fa8efa9023f56fa731072d877e2150afbc.zip | |
Merge branch 'feature/fix-the-long-lines-display-bug'
Diffstat (limited to 'src/window.c')
| -rw-r--r-- | src/window.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/window.c b/src/window.c index 10373f8a2bf..8f889585582 100644 --- a/src/window.c +++ b/src/window.c | |||
| @@ -1028,7 +1028,7 @@ window_body_unit_from_symbol (Lisp_Object unit) | |||
| 1028 | /* Return the number of lines/pixels of W's body. Don't count any mode | 1028 | /* Return the number of lines/pixels of W's body. Don't count any mode |
| 1029 | or header line or horizontal divider of W. Rounds down to nearest | 1029 | or header line or horizontal divider of W. Rounds down to nearest |
| 1030 | integer when not working pixelwise. */ | 1030 | integer when not working pixelwise. */ |
| 1031 | static int | 1031 | int |
| 1032 | window_body_height (struct window *w, enum window_body_unit pixelwise) | 1032 | window_body_height (struct window *w, enum window_body_unit pixelwise) |
| 1033 | { | 1033 | { |
| 1034 | int height = (w->pixel_height | 1034 | int height = (w->pixel_height |