diff options
| author | Richard M. Stallman | 1994-04-09 06:32:32 +0000 |
|---|---|---|
| committer | Richard M. Stallman | 1994-04-09 06:32:32 +0000 |
| commit | 39d1fe0016a5bdc2229fb9b1e08f304232777b51 (patch) | |
| tree | 1143271ee0b85891117e9129a6825964a4d84bc1 /src | |
| parent | a8097b6ca4eb993289388e35625b0f9d882653ab (diff) | |
| download | emacs-39d1fe0016a5bdc2229fb9b1e08f304232777b51.tar.gz emacs-39d1fe0016a5bdc2229fb9b1e08f304232777b51.zip | |
(update_line): Use line_height field.
Diffstat (limited to 'src')
| -rw-r--r-- | src/dispnew.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dispnew.c b/src/dispnew.c index dbc8f59e7b3..aa90d06cbb6 100644 --- a/src/dispnew.c +++ b/src/dispnew.c | |||
| @@ -1562,7 +1562,7 @@ update_line (frame, vpos) | |||
| 1562 | = current_frame->used[vpos] | 1562 | = current_frame->used[vpos] |
| 1563 | * FONT_WIDTH (frame->display.x->font); | 1563 | * FONT_WIDTH (frame->display.x->font); |
| 1564 | current_frame->pix_height[vpos] | 1564 | current_frame->pix_height[vpos] |
| 1565 | = FONT_HEIGHT (frame->display.x->font); | 1565 | = frame->display.x->line_height; |
| 1566 | } | 1566 | } |
| 1567 | #endif /* HAVE_X_WINDOWS */ | 1567 | #endif /* HAVE_X_WINDOWS */ |
| 1568 | 1568 | ||