comparison src/regex.c @ 69032:dfbf872bb6ce

(extend_range_table_work_area): Fix typo.
author Luc Teirlinck <teirllm@auburn.edu>
date Mon, 20 Feb 2006 03:48:53 +0000
parents 9121701fb79d
children b2288bb7d88f 88cd30b5064d
comparison
equal deleted inserted replaced
69031:4cb528cc4c04 69032:dfbf872bb6ce
2068 if (work_area->table) 2068 if (work_area->table)
2069 work_area->table 2069 work_area->table
2070 = (int *) xrealloc (work_area->table, work_area->allocated); 2070 = (int *) xrealloc (work_area->table, work_area->allocated);
2071 else 2071 else
2072 work_area->table 2072 work_area->table
2073 = (int *) xalloc (work_area->allocated); 2073 = (int *) xmalloc (work_area->allocated);
2074 } 2074 }
2075 2075
2076 #ifdef emacs 2076 #ifdef emacs
2077 2077
2078 /* Carefully find the ranges of codes that are equivalent 2078 /* Carefully find the ranges of codes that are equivalent