aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorJuanma Barranquero2008-10-22 14:48:35 +0000
committerJuanma Barranquero2008-10-22 14:48:35 +0000
commitbbeb4e990606615000126c07f3209da43b2d527d (patch)
tree8d74166d7da6e6dc18d59958c187076413068027 /src
parent5be6c7a2837007233510009e2a845a1d7f0e87f7 (diff)
downloademacs-bbeb4e990606615000126c07f3209da43b2d527d.tar.gz
emacs-bbeb4e990606615000126c07f3209da43b2d527d.zip
* xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
Diffstat (limited to 'src')
-rw-r--r--src/ChangeLog9
-rw-r--r--src/xdisp.c5
2 files changed, 6 insertions, 8 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index d853d5b55a7..f7e4b819286 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,4 +1,8 @@
12008-10-02 Adrian Robert <Adrian.B.Robert@gmail.com> 12008-10-22 Juanma Barranquero <lekktu@gmail.com>
2
3 * xdisp.c (next_element_from_buffer): Remove bogus xassert condition.
4
52008-10-22 Adrian Robert <Adrian.B.Robert@gmail.com>
2 6
3 * nsfns.m (ns_appkit_version): New function. 7 * nsfns.m (ns_appkit_version): New function.
4 (x-server-version): Use it. 8 (x-server-version): Use it.
@@ -6178,7 +6182,6 @@
6178 * lisp.h (Fbuffer_list): Declare. 6182 * lisp.h (Fbuffer_list): Declare.
6179 6183
61802008-03-17 Jan Djärv <jan.h.d@swipnet.se> 61842008-03-17 Jan Djärv <jan.h.d@swipnet.se>
6181
6182 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if 6185 * gtkutil.c (free_frame_tool_bar): Only call gtk_container_remove if
6183 handlebox_widget is != 0. 6186 handlebox_widget is != 0.
6184 6187
@@ -6649,7 +6652,6 @@
6649 6652
6650 * intervals.h (INT_LISPLIKE): Remove. It may misfire. 6653 * intervals.h (INT_LISPLIKE): Remove. It may misfire.
6651 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it. 6654 (NULL_INTERVAL_P, SET_INTERVAL_PARENT): Don't use it.
6652
66532008-02-18 Jason Rumney <jasonr@gnu.org> 66552008-02-18 Jason Rumney <jasonr@gnu.org>
6654 6656
6655 * w32fns.c (Fw32_shell_execute): Encode parameters. 6657 * w32fns.c (Fw32_shell_execute): Encode parameters.
@@ -12979,7 +12981,6 @@
12979 * xdisp.c (load_overlay_strings): Fix copy&paste typo. 12981 * xdisp.c (load_overlay_strings): Fix copy&paste typo.
12980 12982
129812007-11-09 Jason Rumney <jasonr@gnu.org> 129832007-11-09 Jason Rumney <jasonr@gnu.org>
12982
12983 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define. 12984 * s/ms-w32.c (USE_TOOLKIT_SCROLL_BARS): Define.
12984 12985
12985 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT. 12986 * w32term.c (w32_scroll_bar_handle_click): Use SCROLL_BAR_CLICK_EVENT.
diff --git a/src/xdisp.c b/src/xdisp.c
index 47ba85f7503..1794a6d3c02 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -6444,10 +6444,7 @@ next_element_from_buffer (it)
6444{ 6444{
6445 int success_p = 1; 6445 int success_p = 1;
6446 6446
6447 /* Check this assumption, otherwise, we would never enter the 6447 xassert (IT_CHARPOS (*it) >= BEGV);
6448 if-statement, below. */
6449 xassert (IT_CHARPOS (*it) >= BEGV
6450 && IT_CHARPOS (*it) <= it->stop_charpos);
6451 6448
6452 if (IT_CHARPOS (*it) >= it->stop_charpos) 6449 if (IT_CHARPOS (*it) >= it->stop_charpos)
6453 { 6450 {