summaryrefslogtreecommitdiff
path: root/src/parse.c
diff options
context:
space:
mode:
authorAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-31 22:54:01 -0700
committerAlan Coopersmith <alan.coopersmith@oracle.com>2013-07-31 22:54:01 -0700
commitce4e11143f982234be1076e384b31228f1cc84ae (patch)
treeaf718100e164c7f87ea7412d453aedf33162b591 /src/parse.c
parent8a3d3a58350506a99efd24f9856466a99bbb9c51 (diff)
Make more functions static that aren't called from other files
Signed-off-by: Alan Coopersmith <alan.coopersmith@oracle.com>
Diffstat (limited to 'src/parse.c')
-rw-r--r--src/parse.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/src/parse.c b/src/parse.c
index eb52c62..53cca49 100644
--- a/src/parse.c
+++ b/src/parse.c
@@ -87,6 +87,7 @@ static int doparse ( int (*ifunc)(void), const char *srctypename, const char *sr
static int twmFileInput ( void );
static int twmStringListInput ( void );
static int ParseUsePPosition ( char *s );
+static int ParseStringList ( unsigned char **sl );
extern int yylineno;
@@ -222,7 +223,7 @@ int ParseTwmrc (char *filename)
}
}
-int ParseStringList (unsigned char **sl)
+static int ParseStringList (unsigned char **sl)
{
stringListSource = sl;
currentString = *sl;
@@ -943,7 +944,7 @@ int do_color_keyword (int keyword, int colormode, char *s)
/**
* Save a pixel value in twm root window color property.
*/
-void
+static void
put_pixel_on_root(Pixel pixel)
{
int i, addPixel = 1;