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
4612b155
Commit
4612b155
authored
Mar 21, 2003
by
Kim F. Storm
Browse files
(STORE_NATIVE_RECT): New macro.
parent
e080d3eb
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
3 deletions
+6
-3
src/xterm.h
src/xterm.h
+6
-3
No files found.
src/xterm.h
View file @
4612b155
...
...
@@ -1051,9 +1051,6 @@ void x_set_window_size P_ ((struct frame *, int, int, int));
void
x_wm_set_window_state
P_
((
struct
frame
*
,
int
));
int
x_alloc_nearest_color
P_
((
struct
frame
*
,
Colormap
,
XColor
*
));
extern
void
pixel_to_glyph_coords
P_
((
struct
frame
*
,
int
,
int
,
int
*
,
int
*
,
XRectangle
*
,
int
));
/* Defined in xterm.c */
extern
void
cancel_mouse_face
P_
((
struct
frame
*
));
...
...
@@ -1183,3 +1180,9 @@ extern int x_session_have_connection P_ ((void));
#define XCHAR2B_BYTE2(chp) \
((chp)->byte2)
#define STORE_NATIVE_RECT(nr,rx,ry,rwidth,rheight) \
((nr).x = (rx), \
(nr).y = (ry), \
(nr).width = (rwidth), \
(nr).height = (rheight))
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