emacs-diffs
[Top][All Lists]
Advanced

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

[Emacs-diffs] /srv/bzr/emacs/trunk r100902: * lread.c (unreadpure, mapa


From: Juanma Barranquero
Subject: [Emacs-diffs] /srv/bzr/emacs/trunk r100902: * lread.c (unreadpure, mapatoms_1): Make static.
Date: Mon, 26 Jul 2010 02:43:58 +0200
User-agent: Bazaar (2.0.3)

------------------------------------------------------------
revno: 100902
committer: Juanma Barranquero <address@hidden>
branch nick: trunk
timestamp: Mon 2010-07-26 02:43:58 +0200
message:
  * lread.c (unreadpure, mapatoms_1): Make static.
modified:
  src/ChangeLog
  src/lread.c
=== modified file 'src/ChangeLog'
--- a/src/ChangeLog     2010-07-25 19:30:14 +0000
+++ b/src/ChangeLog     2010-07-26 00:43:58 +0000
@@ -1,3 +1,7 @@
+2010-07-26  Juanma Barranquero  <address@hidden>
+
+       * lread.c (unreadpure, mapatoms_1): Make static.
+
 2010-07-25  Juanma Barranquero  <address@hidden>
 
        * terminfo.c (tparam): Fix prototype of tparm.

=== modified file 'src/lread.c'
--- a/src/lread.c       2010-07-12 17:47:17 +0000
+++ b/src/lread.c       2010-07-26 00:43:58 +0000
@@ -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);


reply via email to

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