diff options
| author | Kim F. Storm | 2005-03-01 23:21:52 +0000 |
|---|---|---|
| committer | Kim F. Storm | 2005-03-01 23:21:52 +0000 |
| commit | 527d43c2bab3846a92b037c8e3370d12154b3cee (patch) | |
| tree | 2ff557eabc5d19467411bd589ad2f0f608bbaf04 | |
| parent | 0870514c248c4008b5be1836103b3fde64015cef (diff) | |
| download | emacs-527d43c2bab3846a92b037c8e3370d12154b3cee.tar.gz emacs-527d43c2bab3846a92b037c8e3370d12154b3cee.zip | |
(redisplay_window): YABX (yet another bogus xassert).
Reported by David Kastrup.
| -rw-r--r-- | src/xdisp.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/xdisp.c b/src/xdisp.c index 613f6f09b44..71fca1b5eec 100644 --- a/src/xdisp.c +++ b/src/xdisp.c | |||
| @@ -12286,7 +12286,11 @@ redisplay_window (window, just_this_one_p) | |||
| 12286 | { | 12286 | { |
| 12287 | init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID); | 12287 | init_iterator (&it, w, PT, PT_BYTE, NULL, DEFAULT_FACE_ID); |
| 12288 | move_it_vertically_backward (&it, 0); | 12288 | move_it_vertically_backward (&it, 0); |
| 12289 | #if 0 | ||
| 12290 | /* I think this assert is bogus if buffer contains | ||
| 12291 | invisible text or images. KFS. */ | ||
| 12289 | xassert (IT_CHARPOS (it) <= PT); | 12292 | xassert (IT_CHARPOS (it) <= PT); |
| 12293 | #endif | ||
| 12290 | it.current_y = 0; | 12294 | it.current_y = 0; |
| 12291 | } | 12295 | } |
| 12292 | 12296 | ||