Mercurial > emacs
changeset 41833:ad13493331f7
(x_report_frame_params): Make the scroll-bar-width frame parameter have a numeric value
author | Kim F. Storm <storm@cua.dk> |
---|---|
date | Wed, 05 Dec 2001 22:58:22 +0000 |
parents | 2c184948391c |
children | efe03af8f775 |
files | src/xfns.c |
diffstat | 1 files changed, 4 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/xfns.c Wed Dec 05 21:39:01 2001 +0000 +++ b/src/xfns.c Wed Dec 05 22:58:22 2001 +0000 @@ -1202,6 +1202,10 @@ make_number (f->output_data.x->border_width)); store_in_alist (alistptr, Qinternal_border_width, make_number (f->output_data.x->internal_border_width)); + store_in_alist (alistptr, Qleft_fringe, + make_number (f->output_data.x->left_fringe_width)); + store_in_alist (alistptr, Qright_fringe, + make_number (f->output_data.x->right_fringe_width)); sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f)); store_in_alist (alistptr, Qwindow_id, build_string (buf));