repo: rxvt-unicode-sixel action: commit revision: path_from: revision_from: 5c6e76c6bb846589f76623d91b2fc820d206f940: path_to: revision_to:
commit 5c6e76c6bb846589f76623d91b2fc820d206f940 Author: Emanuele GiaquintaDate: Sun Aug 26 17:56:19 2007 +0000 Make some inline functions static. diff --git a/src/rxvt.h b/src/rxvt.h
--- 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
--- 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-----