# HG changeset patch # User Kim F. Storm # Date 1007593102 0 # Node ID ad13493331f73b429165ad23e6d0cc2a5042ab0b # Parent 2c184948391c391c2e29e128c72e7b38d958b775 (x_report_frame_params): Make the scroll-bar-width frame parameter have a numeric value diff -r 2c184948391c -r ad13493331f7 src/xfns.c --- 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));