changeset 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 4cb528cc4c04
children 95e4c1cc8c30
files src/regex.c
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- 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