diff options
| author | Luc Teirlinck | 2006-02-20 03:48:53 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-02-20 03:48:53 +0000 |
| commit | 4aea1d4bd74ad5ac2595c4283b73c0bc3156eb35 (patch) | |
| tree | 790bfff2a5dfb9386e4bf7605538506421973a11 /src | |
| parent | ae494f66e7bdfcd94d50111149e6f423e071cbcf (diff) | |
| download | emacs-4aea1d4bd74ad5ac2595c4283b73c0bc3156eb35.tar.gz emacs-4aea1d4bd74ad5ac2595c4283b73c0bc3156eb35.zip | |
(extend_range_table_work_area): Fix typo.
Diffstat (limited to 'src')
| -rw-r--r-- | src/regex.c | 2 |
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 |