about summary refs log tree commit diff
path: root/Src
diff options
context:
space:
mode:
authorJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2016-02-03 01:24:56 +0900
committerJun-ichi Takimoto <takimoto-j@kba.biglobe.ne.jp>2016-02-03 01:25:33 +0900
commita4020e10a33f3f78681a2e18fb7add56338d4e81 (patch)
tree8a189e89ca1be9c11bb7c444c57c03c35b24e7de /Src
parent69acac38c90559eb2138d3fd7cd852ff73a77fdd (diff)
downloadzsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.gz
zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.tar.xz
zsh-a4020e10a33f3f78681a2e18fb7add56338d4e81.zip
37868: add 'static' to file local variables
Diffstat (limited to 'Src')
-rw-r--r--Src/Modules/curses.c2
-rw-r--r--Src/Modules/param_private.c10
-rw-r--r--Src/Modules/tcp.c2
-rw-r--r--Src/Modules/termcap.c2
-rw-r--r--Src/Modules/zftp.c8
-rw-r--r--Src/Zle/complist.c2
-rw-r--r--Src/Zle/zle_misc.c2
-rw-r--r--Src/Zle/zle_utils.c4
-rw-r--r--Src/cond.c3
-rw-r--r--Src/exec.c2
-rw-r--r--Src/glob.c2
-rw-r--r--Src/jobs.c6
-rw-r--r--Src/params.c2
-rw-r--r--Src/prompt.c2
-rw-r--r--Src/utils.c4
15 files changed, 26 insertions, 27 deletions
diff --git a/Src/Modules/curses.c b/Src/Modules/curses.c
index b8a79ed11..a04841a85 100644
--- a/Src/Modules/curses.c
+++ b/Src/Modules/curses.c
@@ -202,7 +202,7 @@ static const struct zcurses_mouse_event zcurses_mouse_map[] = {
     { 0, 0, 0 }
 };
 
-mmask_t zcurses_mouse_mask = ALL_MOUSE_EVENTS;
+static mmask_t zcurses_mouse_mask = ALL_MOUSE_EVENTS;
 
 #endif
 
diff --git a/Src/Modules/param_private.c b/Src/Modules/param_private.c
index 2f51cb099..86416c5c5 100644
--- a/Src/Modules/param_private.c
+++ b/Src/Modules/param_private.c
@@ -42,19 +42,19 @@ struct gsu_closure {
     void *g;
 };
 
-const struct gsu_scalar scalar_private_gsu =
+static const struct gsu_scalar scalar_private_gsu =
 { pps_getfn, pps_setfn, pps_unsetfn };
 
-const struct gsu_integer integer_private_gsu =
+static const struct gsu_integer integer_private_gsu =
 { ppi_getfn, ppi_setfn, ppi_unsetfn };
 
-const struct gsu_float float_private_gsu =
+static const struct gsu_float float_private_gsu =
 { ppf_getfn, ppf_setfn, ppf_unsetfn };
 
-const struct gsu_array array_private_gsu =
+static const struct gsu_array array_private_gsu =
 { ppa_getfn, ppa_setfn, ppa_unsetfn };
 
-const struct gsu_hash hash_private_gsu =
+static const struct gsu_hash hash_private_gsu =
 { pph_getfn, pph_setfn, pph_unsetfn };
 
 /*
diff --git a/Src/Modules/tcp.c b/Src/Modules/tcp.c
index 5af68834f..dec12142b 100644
--- a/Src/Modules/tcp.c
+++ b/Src/Modules/tcp.c
@@ -208,7 +208,7 @@ freehostent(UNUSED(struct hostent *ptr))
 /**/
 #endif /* !HAVE_GETIPNODEBYNAME */
 
-LinkList ztcp_sessions;
+static LinkList ztcp_sessions;
 
 /* "allocate" a tcp_session */
 static Tcp_session
diff --git a/Src/Modules/termcap.c b/Src/Modules/termcap.c
index 29c28360c..60a6e138a 100644
--- a/Src/Modules/termcap.c
+++ b/Src/Modules/termcap.c
@@ -295,7 +295,7 @@ scantermcap(UNUSED(HashTable ht), ScanFunc func, int flags)
     }
 }
 
-struct paramdef partab[] = {
+static struct paramdef partab[] = {
     SPECIALPMDEF("termcap", PM_READONLY, NULL, gettermcap, scantermcap)
 };
 
diff --git a/Src/Modules/zftp.c b/Src/Modules/zftp.c
index b4081df5f..deed35e2f 100644
--- a/Src/Modules/zftp.c
+++ b/Src/Modules/zftp.c
@@ -344,10 +344,10 @@ static int zfsesscnt;
  */
 
 /* flags for alarm set, alarm gone off */
-int zfalarmed, zfdrrrring;
+static int zfalarmed, zfdrrrring;
 /* remember old alarm status */
-time_t oaltime;
-unsigned int oalremain;
+static time_t oaltime;
+static unsigned int oalremain;
 
 /*
  * Where to jump to when the alarm goes off.  This is much
@@ -357,7 +357,7 @@ unsigned int oalremain;
  *
  * gcc -O gives apparently spurious `may be clobbered by longjmp' warnings.
  */
-jmp_buf zfalrmbuf;
+static jmp_buf zfalrmbuf;
 
 /* The signal handler itself */
 
diff --git a/Src/Zle/complist.c b/Src/Zle/complist.c
index 0ccb88505..06a07a4e8 100644
--- a/Src/Zle/complist.c
+++ b/Src/Zle/complist.c
@@ -113,7 +113,7 @@ static Cmgroup *mgtab, *mgtabp;
  * Allow us to keep track of pointer arithmetic for mgtab; could
  * just as well have been for mtab but wasn't.
  */
-int mgtabsize;
+static int mgtabsize;
 #endif
 
 /*
diff --git a/Src/Zle/zle_misc.c b/Src/Zle/zle_misc.c
index 0483f758d..25f65b39c 100644
--- a/Src/Zle/zle_misc.c
+++ b/Src/Zle/zle_misc.c
@@ -1497,7 +1497,7 @@ struct suffixset {
 };
 
 /* The list of suffix structures */
-struct suffixset *suffixlist;
+static struct suffixset *suffixlist;
 
 /* Shell function to call to remove the suffix. */
 
diff --git a/Src/Zle/zle_utils.c b/Src/Zle/zle_utils.c
index a2c88102a..68794c66a 100644
--- a/Src/Zle/zle_utils.c
+++ b/Src/Zle/zle_utils.c
@@ -587,7 +587,7 @@ struct zle_position {
 };
 
 /* LIFO stack of positions */
-struct zle_position *zle_positions;
+static struct zle_position *zle_positions;
 
 /*
  * Save positions including cursor, end-of-line and
@@ -1412,7 +1412,7 @@ zlong undo_changeno;
 
 /* If positive, don't undo beyond this point */
 
-zlong undo_limitno;
+static zlong undo_limitno;
 
 /**/
 void
diff --git a/Src/cond.c b/Src/cond.c
index c5ab65eea..0381fe94b 100644
--- a/Src/cond.c
+++ b/Src/cond.c
@@ -30,7 +30,8 @@
 #include "zsh.mdh"
 #include "cond.pro"
 
-int tracingcond;
+/**/
+int tracingcond;    /* updated by execcond() in exec.c */
 
 static char *condstr[COND_MOD] = {
     "!", "&&", "||", "==", "!=", "<", ">", "-nt", "-ot", "-ef", "-eq",
diff --git a/Src/exec.c b/Src/exec.c
index 352615c83..b60fc90bd 100644
--- a/Src/exec.c
+++ b/Src/exec.c
@@ -4518,8 +4518,6 @@ spawnpipes(LinkList l, int nullexec)
     }
 }
 
-extern int tracingcond;
-
 /* evaluate a [[ ... ]] */
 
 /**/
diff --git a/Src/glob.c b/Src/glob.c
index 69de15544..2051016ec 100644
--- a/Src/glob.c
+++ b/Src/glob.c
@@ -306,7 +306,7 @@ statfullpath(const char *s, struct stat *st, int l)
 /* This may be set by qualifier functions to an array of strings to insert
  * into the list instead of the original string. */
 
-char **inserts;
+static char **inserts;
 
 /* add a match to the list */
 
diff --git a/Src/jobs.c b/Src/jobs.c
index b47ba8c60..2a9dbe7d6 100644
--- a/Src/jobs.c
+++ b/Src/jobs.c
@@ -1970,9 +1970,9 @@ struct bgstatus {
 };
 typedef struct bgstatus *Bgstatus;
 /* The list of those entries */
-LinkList bgstatus_list;
+static LinkList bgstatus_list;
 /* Count of entries.  Reaches value of _SC_CHILD_MAX and stops. */
-long bgstatus_count;
+static long bgstatus_count;
 
 /*
  * Remove and free a bgstatus entry.
@@ -2372,7 +2372,7 @@ bin_fg(char *name, char **argv, Options ops, int func)
     return retval;
 }
 
-const struct {
+static const struct {
     const char *name;
     int num;
 } alt_sigs[] = {
diff --git a/Src/params.c b/Src/params.c
index a1f0292cc..76ed61c39 100644
--- a/Src/params.c
+++ b/Src/params.c
@@ -416,7 +416,7 @@ IPDEF10("pipestatus", pipestatus_gsu),
  * and $@, this is not readonly.  This parameter is not directly
  * visible in user space.
  */
-initparam argvparam_pm = IPDEF9F("", &pparams, NULL, \
+static initparam argvparam_pm = IPDEF9F("", &pparams, NULL, \
 				 PM_ARRAY|PM_SPECIAL|PM_DONTIMPORT);
 
 #undef BR
diff --git a/Src/prompt.c b/Src/prompt.c
index be067ee7e..831c4f948 100644
--- a/Src/prompt.c
+++ b/Src/prompt.c
@@ -1831,7 +1831,7 @@ struct colour_sequences {
     char *end;			/* Escape sequence terminator */
     char *def;			/* Code to reset default colour */
 };
-struct colour_sequences fg_bg_sequences[2];
+static struct colour_sequences fg_bg_sequences[2];
 
 /*
  * We need a buffer for colour sequence composition.  It may
diff --git a/Src/utils.c b/Src/utils.c
index 053731cfa..de4af5a51 100644
--- a/Src/utils.c
+++ b/Src/utils.c
@@ -56,12 +56,12 @@ typedef struct widechar_array *Widechar_array;
  * The wordchars variable turned into a wide character array.
  * This is much more convenient for testing.
  */
-struct widechar_array wordchars_wide;
+static struct widechar_array wordchars_wide;
 
 /*
  * The same for the separators (IFS) array.
  */
-struct widechar_array ifs_wide;
+static struct widechar_array ifs_wide;
 
 /* Function to set one of the above from the multibyte array */