diff options
| author | Kim F. Storm | 2001-12-05 23:02:18 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2001-12-05 23:02:18 +0000 |
| commit | e90c3f90d47e6ad02103bd6afc849e4fce8a5158 (patch) | |
| tree | 7b405ccceb1caa11124ec84c7f9fceb038fe9f44 /mac/src | |
| parent | 30bf44e00eed322f099f3e88499fc57250c5f862 (diff) | |
| download | emacs-e90c3f90d47e6ad02103bd6afc849e4fce8a5158.tar.gz emacs-e90c3f90d47e6ad02103bd6afc849e4fce8a5158.zip | |
(x_report_frame_params): Return actual fringe widths.
Diffstat (limited to 'mac/src')
| -rw-r--r-- | mac/src/macfns.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mac/src/macfns.c b/mac/src/macfns.c index 312c9e5c719..04055d4caf5 100644 --- a/mac/src/macfns.c +++ b/mac/src/macfns.c | |||
| @@ -1002,6 +1002,10 @@ x_report_frame_params (f, alistptr) | |||
| 1002 | make_number (f->output_data.mac->border_width)); | 1002 | make_number (f->output_data.mac->border_width)); |
| 1003 | store_in_alist (alistptr, Qinternal_border_width, | 1003 | store_in_alist (alistptr, Qinternal_border_width, |
| 1004 | make_number (f->output_data.mac->internal_border_width)); | 1004 | make_number (f->output_data.mac->internal_border_width)); |
| 1005 | store_in_alist (alistptr, Qleft_fringe, | ||
| 1006 | make_number (f->output_data.mac->left_fringe_width)); | ||
| 1007 | store_in_alist (alistptr, Qright_fringe, | ||
| 1008 | make_number (f->output_data.mac->right_fringe_width)); | ||
| 1005 | sprintf (buf, "%ld", (long) FRAME_MAC_WINDOW (f)); | 1009 | sprintf (buf, "%ld", (long) FRAME_MAC_WINDOW (f)); |
| 1006 | store_in_alist (alistptr, Qwindow_id, | 1010 | store_in_alist (alistptr, Qwindow_id, |
| 1007 | build_string (buf)); | 1011 | build_string (buf)); |