# HG changeset patch # User adrian # Date 1113040932 0 # Node ID e01408ac65809d7e9ceb6d1d623eef25c0c1c6eb # Parent 6fa9919a9a0b2f15a24cbf0529f5cd3a73fd4d79 [xemacs-hg @ 2005-04-09 10:02:12 by adrian] [PATCH] (text.c) move active code out from assert() diff -r 6fa9919a9a0b -r e01408ac6580 src/ChangeLog --- 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 + + * text.c (new_dfc_convert_size): Move active code out of assert. + 2005-04-01 Marcus Crestani The new allocator. diff -r 6fa9919a9a0b -r e01408ac6580 src/text.c --- 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;