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
7eee47cc
Commit
7eee47cc
authored
Feb 02, 2001
by
Gerd Moellmann
Browse files
(get_next_display_element): Fix case of empty
display table entry.
parent
9b2a085d
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
2 deletions
+6
-2
src/xdisp.c
src/xdisp.c
+6
-2
No files found.
src/xdisp.c
View file @
7eee47cc
...
...
@@ -3877,9 +3877,13 @@ get_next_display_element (it)
it->dpend = v->contents + v->size;
it->current.dpvec_index = 0;
it->method = next_element_from_display_vector;
success_p = get_next_display_element (it);
}
else
{
set_iterator_to_next (it, 0);
success_p = get_next_display_element (it);
}
success_p = get_next_display_element (it);
}
/* Translate control characters into `\003' or `^C' form.
...
...
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