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
7c118b57
Commit
7c118b57
authored
Sep 29, 1994
by
Karl Heuer
Browse files
(x_report_frame_params): Fix format/arg mismatch.
parent
d63c1903
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/xfns.c
src/xfns.c
+1
-1
No files found.
src/xfns.c
View file @
7c118b57
...
...
@@ -704,7 +704,7 @@ x_report_frame_params (f, alistptr)
make_number
(
f
->
display
.
x
->
border_width
));
store_in_alist
(
alistptr
,
Qinternal_border_width
,
make_number
(
f
->
display
.
x
->
internal_border_width
));
sprintf
(
buf
,
"%d"
,
FRAME_X_WINDOW
(
f
));
sprintf
(
buf
,
"%
l
d"
,
(
long
)
FRAME_X_WINDOW
(
f
));
store_in_alist
(
alistptr
,
Qwindow_id
,
build_string
(
buf
));
FRAME_SAMPLE_VISIBILITY
(
f
);
...
...
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