diff src/eval.c @ 1849:21549d437f09

[xemacs-hg @ 2004-01-03 21:54:41 by james] GCPROd variables cannot be declared REGISTER. Thanks to James McPherson.
author james
date Sat, 03 Jan 2004 21:54:42 +0000
parents 68ed93de81b7
children 31d5f86eb303
line wrap: on
line diff
--- a/src/eval.c	Fri Jan 02 22:50:24 2004 +0000
+++ b/src/eval.c	Sat Jan 03 21:54:42 2004 +0000
@@ -969,7 +969,7 @@
        (args))
 {
   /* This function can GC */
-  REGISTER Lisp_Object val;
+  Lisp_Object val;
   struct gcpro gcpro1;
 
   val = Feval (XCAR (args));
@@ -994,7 +994,7 @@
        (args))
 {
   /* This function can GC */
-  REGISTER Lisp_Object val;
+  Lisp_Object val;
   struct gcpro gcpro1;
 
   Feval (XCAR (args));