repo: rxvt-unicode-sixel
action: commit
revision: 
path_from: 
revision_from: 5c6e76c6bb846589f76623d91b2fc820d206f940:
path_to: 
revision_to: 
git.thebackupbox.net
rxvt-unicode-sixel
git clone git://git.thebackupbox.net/rxvt-unicode-sixel
commit 5c6e76c6bb846589f76623d91b2fc820d206f940
Author: Emanuele Giaquinta 
Date:   Sun Aug 26 17:56:19 2007 +0000

    Make some inline functions static.

diff --git a/src/rxvt.h b/src/rxvt.h
index 3e4632bb3b1084690d49afb127ee7e22500b1075..
index ..59a2bfcfa76032b7b2764a19fe915bfc5bf4ba08 100644
--- a/src/rxvt.h
+++ b/src/rxvt.h
@@ -133,7 +133,7 @@ void             rxvt_freecommastring             (char **cs) NOTHROW;
 extern char **environ;
 extern char **rxvt_environ; // the original environ pointer

-inline void set_environ (stringvec *envv)
+static inline void set_environ (stringvec *envv)
 {
 #if ENABLE_PERL
   assert (envv);
@@ -143,7 +143,7 @@ inline void set_environ (stringvec *envv)
     environ = (char **)envv->begin ();
 }

-inline void set_environ (char **envv)
+static inline void set_environ (char **envv)
 {
 #if ENABLE_PERL
   assert (envv);
diff --git a/src/screen.C b/src/screen.C
index c30d74997f27d36b1ecd59f15a85c6a0cbdda6c8..
index ..a280c089ad8400c1f14a33f34f88a87635cdf350 100644
--- a/src/screen.C
+++ b/src/screen.C
@@ -32,7 +32,7 @@

 #include "salloc.C" // HACK, should be a seperate compile!

-inline void fill_text (text_t *start, text_t value, int len)
+static inline void fill_text (text_t *start, text_t value, int len)
 {
   while (len--)
     *start++ = value;

-----END OF PAGE-----