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
6adb6f01
Commit
6adb6f01
authored
Jan 24, 2005
by
Kim F. Storm
Browse files
*** empty log message ***
parent
dacb2f70
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
14 additions
and
7 deletions
+14
-7
src/ChangeLog
src/ChangeLog
+9
-6
src/xdisp.c
src/xdisp.c
+5
-1
No files found.
src/ChangeLog
View file @
6adb6f01
2005-01-24 Kim F. Storm <storm@cua.dk>
* xdisp.c (move_it_by_lines): If we move forward after going too
far back, cancel move if end position is same as start position.
2005-01-24 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
* dispextern.h (struct glyph_string): New members clip_head and
clip_tail.
* xdisp.c (get_glyph_string_clip_rect): Restrict horizontal clip
region to the area between clip_head and clip_tail.
(draw_glyphs): Record the area that need to be actually redrawn to
...
...
@@ -10,17 +15,15 @@
overhangs. Set values of these variables to the corresponding
members in struct glyph_string. Refine x coordinates for
notice_overwritten_cursor using clip_head and clip_tail.
* macgui.h (STORE_XCHARSETSTRUCT): New macro.
* macterm.c (mac_compute_glyph_string_overhangs): Implement with
QDTextBounds.
(x_draw_glyph_string): Don't fill the background of the successor
of a glyph with a right overhang if the successor will draw a
cursor.
of a glyph with a right overhang if the successor will draw a cursor.
(XLoadQueryFont): Obtain font metrics using QDTextBounds.
(x_redisplay_interface): Add entry for
compute_glyph_string_overhangs.
(x_redisplay_interface): Add entry for compute_glyph_string_overhangs.
2005-01-24 Kim F. Storm <storm@cua.dk>
...
...
src/xdisp.c
View file @
6adb6f01
...
...
@@ -6413,11 +6413,15 @@ move_it_by_lines (it, dvpos, need_y_p)
it->current_y -= it2.current_y;
it->current_x = it->hpos = 0;
/* If we moved too far, move IT some lines forward. */
/* If we moved too far
back
, move IT some lines forward. */
if (it2.vpos > -dvpos)
{
int delta = it2.vpos + dvpos;
it2 = *it;
move_it_to (it, -1, -1, -1, it->vpos + delta, MOVE_TO_VPOS);
/* Move back again if we got too far ahead. */
if (IT_CHARPOS (*it) >= start_charpos)
*it = it2;
}
}
}
...
...
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