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
5634ff85
Commit
5634ff85
authored
Apr 10, 2010
by
YAMAMOTO Mitsuharu
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
xfns.c (Fx_show_tip): Undo last change.
parent
ba33df00
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
8 deletions
+8
-8
src/ChangeLog
src/ChangeLog
+4
-0
src/xfns.c
src/xfns.c
+4
-8
No files found.
src/ChangeLog
View file @
5634ff85
2010-04-10 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* xfns.c (Fx_show_tip): Undo last change.
2010-04-09 Jan Djärv <jan.h.d@swipnet.se>
* xfns.c (Fx_show_tip): Call try_window in a loop until
...
...
src/xfns.c
View file @
5634ff85
...
...
@@ -5225,14 +5225,10 @@ Text larger than the specified size is clipped. */)
old_buffer
=
current_buffer
;
set_buffer_internal_1
(
XBUFFER
(
XWINDOW
(
FRAME_ROOT_WINDOW
(
f
))
->
buffer
));
current_buffer
->
truncate_lines
=
Qnil
;
do
{
fonts_changed_p
=
0
;
clear_glyph_matrix
(
w
->
desired_matrix
);
clear_glyph_matrix
(
w
->
current_matrix
);
SET_TEXT_POS
(
pos
,
BEGV
,
BEGV_BYTE
);
try_window
(
FRAME_ROOT_WINDOW
(
f
),
pos
,
0
);
}
while
(
fonts_changed_p
);
clear_glyph_matrix
(
w
->
desired_matrix
);
clear_glyph_matrix
(
w
->
current_matrix
);
SET_TEXT_POS
(
pos
,
BEGV
,
BEGV_BYTE
);
try_window
(
FRAME_ROOT_WINDOW
(
f
),
pos
,
0
);
/* Compute width and height of the tooltip. */
width
=
height
=
0
;
...
...
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