aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/regex.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/regex.c b/src/regex.c
index d6b61a1c18b..c08471355fd 100644
--- a/src/regex.c
+++ b/src/regex.c
@@ -2070,7 +2070,7 @@ extend_range_table_work_area (work_area)
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