emacs-diffs
[Top][All Lists]
Advanced

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

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


From: Kim F . Storm
Subject: [Emacs-diffs] Changes to emacs/src/alloc.c
Date: Mon, 21 Jun 2004 17:56:00 -0400

Index: emacs/src/alloc.c
diff -c emacs/src/alloc.c:1.343 emacs/src/alloc.c:1.344
*** emacs/src/alloc.c:1.343     Sat May 29 16:19:41 2004
--- emacs/src/alloc.c   Mon Jun 21 21:51:50 2004
***************
*** 579,584 ****
--- 579,595 ----
  }
  
  
+ /* Unwind for SAFE_ALLOCA */
+ 
+ Lisp_Object
+ safe_alloca_unwind (arg)
+      Lisp_Object arg;
+ {
+   xfree (XSAVE_VALUE (arg)->pointer);
+   return Qnil;
+ }
+ 
+ 
  /* Like malloc but used for allocating Lisp data.  NBYTES is the
     number of bytes to allocate, TYPE describes the intended use of the
     allcated memory block (for strings, for conses, ...).  */




reply via email to

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