aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGerd Moellmann2001-01-29 16:31:00 +0000
committerGerd Moellmann2001-01-29 16:31:00 +0000
commit4eefd9d2100d0a4e4a806851ffe89483026dfe66 (patch)
tree438904cd0dd1ae990d307fcf488c75ce4b708003
parente2a802843743472fb362123d0185b2ee8c38d6a9 (diff)
downloademacs-4eefd9d2100d0a4e4a806851ffe89483026dfe66.tar.gz
emacs-4eefd9d2100d0a4e4a806851ffe89483026dfe66.zip
(forward_to_next_line_start): Remove xassert.
-rw-r--r--src/ChangeLog6
-rw-r--r--src/xdisp.c1
2 files changed, 5 insertions, 2 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index 54e6e6f0c18..05ca046ebce 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,6 +1,10 @@
12001-01-29 Gerd Moellmann <gerd@gnu.org>
2
3 * xdisp.c (forward_to_next_line_start): Remove xassert.
4
12001-01-29 Jason Rumney <jasonr@gnu.org> 52001-01-29 Jason Rumney <jasonr@gnu.org>
2 6
3 w32term.c (x_draw_row_bitmaps): Delay obtaining HDC to avoid 7 * w32term.c (x_draw_row_bitmaps): Delay obtaining HDC to avoid
4 returning without releasing it. 8 returning without releasing it.
5 9
62001-01-29 Kenichi Handa <handa@etl.go.jp> 102001-01-29 Kenichi Handa <handa@etl.go.jp>
diff --git a/src/xdisp.c b/src/xdisp.c
index dffef44f487..149741d9857 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -3547,7 +3547,6 @@ forward_to_next_line_start (it, skipped_p)
3547 } 3547 }
3548 3548
3549 it->selective = old_selective; 3549 it->selective = old_selective;
3550 xassert (!newline_found_p || FETCH_BYTE (IT_BYTEPOS (*it) - 1) == '\n');
3551 return newline_found_p; 3550 return newline_found_p;
3552} 3551}
3553 3552