]> git.eshelyaron.com Git - emacs.git/commitdiff
(extend_range_table_work_area): Fix typo.
authorLuc Teirlinck <teirllm@auburn.edu>
Mon, 20 Feb 2006 03:48:53 +0000 (03:48 +0000)
committerLuc Teirlinck <teirllm@auburn.edu>
Mon, 20 Feb 2006 03:48:53 +0000 (03:48 +0000)
src/regex.c

index d6b61a1c18b949f36dc790afe38c9da5b02a8e3b..c08471355fd3b3c2cd45a6bdb379aed7fcbc91bf 100644 (file)
@@ -2070,7 +2070,7 @@ extend_range_table_work_area (work_area)
       = (int *) xrealloc (work_area->table, work_area->allocated);
   else
     work_area->table
-      = (int *) xalloc (work_area->allocated);
+      = (int *) xmalloc (work_area->allocated);
 }
 
 #ifdef emacs