1
0
mirror of https://git.savannah.gnu.org/git/emacs.git synced 2024-12-11 09:20:51 +00:00

(extend_range_table_work_area): Fix typo.

This commit is contained in:
Luc Teirlinck 2006-02-20 03:48:53 +00:00
parent ae494f66e7
commit 4aea1d4bd7

View 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