emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/src/regex.c


From: Richard M. Stallman
Subject: [Emacs-diffs] Changes to emacs/src/regex.c
Date: Mon, 20 Feb 2006 01:15:42 +0000

Index: emacs/src/regex.c
diff -u emacs/src/regex.c:1.205 emacs/src/regex.c:1.206
--- emacs/src/regex.c:1.205     Tue Jan 24 19:14:58 2006
+++ emacs/src/regex.c   Mon Feb 20 01:15:42 2006
@@ -2067,10 +2067,10 @@
   work_area->allocated += 16 * sizeof (int);
   if (work_area->table)
     work_area->table
-      = (int *) realloc (work_area->table, work_area->allocated);
+      = (int *) xrealloc (work_area->table, work_area->allocated);
   else
     work_area->table
-      = (int *) malloc (work_area->allocated);
+      = (int *) xalloc (work_area->allocated);
 }
 
 #ifdef emacs




reply via email to

[Prev in Thread] Current Thread [Next in Thread]