diff src/lread.c @ 456:e7ef97881643 r21-2-43

Import from CVS: tag r21-2-43
author cvs
date Mon, 13 Aug 2007 11:41:24 +0200
parents 576fb035e263
children ed498ef2108b
line wrap: on
line diff
--- a/src/lread.c	Mon Aug 13 11:40:56 2007 +0200
+++ b/src/lread.c	Mon Aug 13 11:41:24 2007 +0200
@@ -2501,15 +2501,15 @@
 	  case '+':
 	  case '-':
 	    {
-	      Lisp_Object fexp, obj, tem;
+	      Lisp_Object feature_exp, obj, tem;
 	      struct gcpro gcpro1, gcpro2;
 
-	      fexp = read0(readcharfun);
+	      feature_exp = read0(readcharfun);
 	      obj = read0(readcharfun);
 
 	      /* the call to `featurep' may GC. */
-	      GCPRO2 (fexp, obj);
-	      tem = call1 (Qfeaturep, fexp);
+	      GCPRO2 (feature_exp, obj);
+	      tem = call1 (Qfeaturep, feature_exp);
 	      UNGCPRO;
 
 	      if (c == '+' &&  NILP(tem)) goto retry;