Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
7
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
4bef8d26
Commit
4bef8d26
authored
Apr 13, 2010
by
Jan Djärv
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(Fx_create_frame, x_create_tip_frame): Set default border width to zero.
parent
c1e25821
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
2 deletions
+7
-2
src/ChangeLog
src/ChangeLog
+5
-0
src/xfns.c
src/xfns.c
+2
-2
No files found.
src/ChangeLog
View file @
4bef8d26
2010-04-13 Jan Djärv <jan.h.d@swipnet.se>
* xfns.c (Fx_create_frame, x_create_tip_frame): Set default border width
to zero.
2010-04-13 Stefan Monnier <monnier@iro.umontreal.ca>
* term.c (init_tty): Move common text outside of #ifdef TERMINFO.
...
...
src/xfns.c
View file @
4bef8d26
...
...
@@ -3376,7 +3376,7 @@ This function is an internal primitive--use `make-frame' instead. */)
/* Frame contents get displaced if an embedded X window has a border. */
if
(
!
FRAME_X_EMBEDDED_P
(
f
))
x_default_parameter
(
f
,
parms
,
Qborder_width
,
make_number
(
2
),
x_default_parameter
(
f
,
parms
,
Qborder_width
,
make_number
(
0
),
"borderWidth"
,
"BorderWidth"
,
RES_TYPE_NUMBER
);
/* This defaults to 1 in order to match xterm. We recognize either
...
...
@@ -4847,7 +4847,7 @@ x_create_tip_frame (dpyinfo, parms, text)
needed to determine window geometry. */
x_default_font_parameter
(
f
,
parms
);
x_default_parameter
(
f
,
parms
,
Qborder_width
,
make_number
(
2
),
x_default_parameter
(
f
,
parms
,
Qborder_width
,
make_number
(
0
),
"borderWidth"
,
"BorderWidth"
,
RES_TYPE_NUMBER
);
/* This defaults to 2 in order to match xterm. We recognize either
...
...
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