# HG changeset patch # User Luc Teirlinck # Date 1140407333 0 # Node ID dfbf872bb6ce31f2d836058824a98d9a4da51a69 # Parent 4cb528cc4c046eb6a86c9cc8d3e97d7fd30f082a (extend_range_table_work_area): Fix typo. diff -r 4cb528cc4c04 -r dfbf872bb6ce src/regex.c --- a/src/regex.c Mon Feb 20 01:24:38 2006 +0000 +++ b/src/regex.c Mon Feb 20 03:48:53 2006 +0000 @@ -2070,7 +2070,7 @@ = (int *) xrealloc (work_area->table, work_area->allocated); else work_area->table - = (int *) xalloc (work_area->allocated); + = (int *) xmalloc (work_area->allocated); } #ifdef emacs