Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
30bf44e0
Commit
30bf44e0
authored
Dec 05, 2001
by
Kim F. Storm
Browse files
(x_report_frame_params): Make the scroll-bar-width frame parameter have a numeric value
parent
e0fead5d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/xfns.c
src/xfns.c
+4
-0
No files found.
src/xfns.c
View file @
30bf44e0
...
@@ -1202,6 +1202,10 @@ x_report_frame_params (f, alistptr)
...
@@ -1202,6 +1202,10 @@ x_report_frame_params (f, alistptr)
make_number (f->output_data.x->border_width));
make_number (f->output_data.x->border_width));
store_in_alist (alistptr, Qinternal_border_width,
store_in_alist (alistptr, Qinternal_border_width,
make_number (f->output_data.x->internal_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));
sprintf (buf, "%ld", (long) FRAME_X_WINDOW (f));
store_in_alist (alistptr, Qwindow_id,
store_in_alist (alistptr, Qwindow_id,
build_string (buf));
build_string (buf));
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment