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
aa17b858
Commit
aa17b858
authored
Dec 13, 2001
by
Eli Zaretskii
Browse files
(x_report_frame_params): Makes the scroll-bar-width frame parameter have
a numeric value all the time.
parent
99f7c77f
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
4 additions
and
0 deletions
+4
-0
src/w32fns.c
src/w32fns.c
+4
-0
No files found.
src/w32fns.c
View file @
aa17b858
...
...
@@ -1080,6 +1080,10 @@ x_report_frame_params (f, alistptr)
make_number (f->output_data.w32->left_fringe_width));
store_in_alist (alistptr, Qright_fringe,
make_number (f->output_data.w32->right_fringe_width));
store_in_alist (alistptr, Qscroll_bar_width,
make_number (FRAME_HAS_VERTICAL_SCROLL_BARS (f)
? FRAME_SCROLL_BAR_PIXEL_WIDTH(f)
: 0));
sprintf (buf, "%ld", (long) FRAME_W32_WINDOW (f));
store_in_alist (alistptr, Qwindow_id,
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