Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
What's new
10
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
d85b2f1e
Commit
d85b2f1e
authored
Nov 03, 2007
by
Richard M. Stallman
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
(handle_stop): Move some code out of loop.
parent
d7a2fd42
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
11 additions
and
5 deletions
+11
-5
src/ChangeLog
src/ChangeLog
+4
-0
src/xdisp.c
src/xdisp.c
+7
-5
No files found.
src/ChangeLog
View file @
d85b2f1e
2007-11-03 Richard Stallman <rms@gnu.org>
* xdisp.c (handle_stop): Move some code out of loop.
2007-11-01 Johan Bockg,Ae(Brd <bojohan@gnu.org>
2007-11-01 Johan Bockg,Ae(Brd <bojohan@gnu.org>
* macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
* macterm.c, w32term.c, xterm.c (x_draw_stretch_glyph_string):
...
...
src/xdisp.c
View file @
d85b2f1e
...
@@ -3073,16 +3073,18 @@ handle_stop (it)
...
@@ -3073,16 +3073,18 @@ handle_stop (it)
if (it->method == GET_FROM_DISPLAY_VECTOR)
if (it->method == GET_FROM_DISPLAY_VECTOR)
handle_overlay_change_p = 0;
handle_overlay_change_p = 0;
/* Handle overlay changes. */
/* Handle overlay changes.
This sets HANDLED to HANDLED_RECOMPUTE_PROPS
if it finds overlays. */
if (handle_overlay_change_p)
if (handle_overlay_change_p)
handled = handle_overlay_change (it);
handled = handle_overlay_change (it);
/* Determine where to stop next. */
if (handled == HANDLED_NORMALLY)
compute_stop_pos (it);
}
}
}
}
while (handled == HANDLED_RECOMPUTE_PROPS);
while (handled == HANDLED_RECOMPUTE_PROPS);
/* Determine where to stop next. */
if (handled == HANDLED_NORMALLY)
compute_stop_pos (it);
}
}
...
...
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