Mercurial > hg > xemacs-beta
changeset 2721:e01408ac6580
[xemacs-hg @ 2005-04-09 10:02:12 by adrian]
[PATCH] (text.c) move active code out from assert() <etPan.424d2036.6b8b4567.1e4a@freefluid>
author | adrian |
---|---|
date | Sat, 09 Apr 2005 10:02:12 +0000 |
parents | 6fa9919a9a0b |
children | 65bc67c9185a |
files | src/ChangeLog src/text.c |
diffstat | 2 files changed, 6 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/ChangeLog Fri Apr 08 23:11:35 2005 +0000 +++ b/src/ChangeLog Sat Apr 09 10:02:12 2005 +0000 @@ -1,3 +1,7 @@ +2005-04-01 Melvin Hadasht <melvin.hadasht@free.fr> + + * text.c (new_dfc_convert_size): Move active code out of assert. + 2005-04-01 Marcus Crestani <crestani@xemacs.org> The new allocator.
--- a/src/text.c Fri Apr 08 23:11:35 2005 +0000 +++ b/src/text.c Sat Apr 09 10:02:12 2005 +0000 @@ -4588,7 +4588,8 @@ { alloca_convert_vals vals; - assert (find_pos_of_existing_active_alloca_convert (srctext) < 0); + int i = find_pos_of_existing_active_alloca_convert (srctext); + assert (i < 0); vals.srctext = srctext;