From: Kim F. Storm Date: Wed, 5 Dec 2001 22:58:22 +0000 (+0000) Subject: (x_report_frame_params): Make the scroll-bar-width frame parameter have a numeric... X-Git-Tag: ttn-vms-21-2-B4~17892 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=30bf44e00eed322f099f3e88499fc57250c5f862;p=emacs.git (x_report_frame_params): Make the scroll-bar-width frame parameter have a numeric value --- diff --git a/src/xfns.c b/src/xfns.c index 50520b53458..3d309e11dc2 100644 --- a/src/xfns.c +++ b/src/xfns.c @@ -1202,6 +1202,10 @@ x_report_frame_params (f, alistptr) 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));