diff src/lread.c @ 109542:6b02202d9fdc

* lread.c (unreadpure, mapatoms_1): Make static.
author Juanma Barranquero <lekktu@gmail.com>
date Mon, 26 Jul 2010 02:43:58 +0200
parents 89a16701cde1
children c4c8e4a16194
line wrap: on
line diff
--- a/src/lread.c	Sun Jul 25 21:30:14 2010 +0200
+++ b/src/lread.c	Mon Jul 26 02:43:58 2010 +0200
@@ -1276,7 +1276,6 @@
 
 static Lisp_Object
 load_unwind (Lisp_Object arg)  /* used as unwind-protect function in load */
-                     
 {
   FILE *stream = (FILE *) XSAVE_VALUE (arg)->pointer;
   if (stream != NULL)
@@ -1567,9 +1566,8 @@
 			   Vload_history);
 }
 
-Lisp_Object
+static Lisp_Object
 unreadpure (Lisp_Object junk) /* Used as unwind-protect function in readevalloop */
-                      
 {
   read_pure = 0;
   return Qnil;
@@ -3818,7 +3816,7 @@
     }
 }
 
-void
+static void
 mapatoms_1 (Lisp_Object sym, Lisp_Object function)
 {
   call1 (function, sym);