mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-18 03:11:15 +02:00
unposted: declare file local variables as static
This commit is contained in:
parent
4d7b34c5f3
commit
c09af3516f
2 changed files with 4 additions and 2 deletions
|
@ -2,6 +2,8 @@
|
||||||
|
|
||||||
* unposted: Src/Modules/tcp.c: silence compiler warnings on Cygwin
|
* unposted: Src/Modules/tcp.c: silence compiler warnings on Cygwin
|
||||||
|
|
||||||
|
* unposted: Src/hashtable.c: declare file local variables as static
|
||||||
|
|
||||||
2017-03-09 Barton E. Schaefer <schaefer@zsh.org>
|
2017-03-09 Barton E. Schaefer <schaefer@zsh.org>
|
||||||
|
|
||||||
* Fabian Klotzl: 40808: Completion/Linux/Command/_mdadm,
|
* Fabian Klotzl: 40808: Completion/Linux/Command/_mdadm,
|
||||||
|
|
|
@ -1496,8 +1496,8 @@ struct dircache_entry
|
||||||
* for multiple references to the same directory, e.g
|
* for multiple references to the same directory, e.g
|
||||||
* "autoload /blah/blah/\*".
|
* "autoload /blah/blah/\*".
|
||||||
*/
|
*/
|
||||||
struct dircache_entry *dircache, *dircache_lastentry;
|
static struct dircache_entry *dircache, *dircache_lastentry;
|
||||||
int dircache_size;
|
static int dircache_size;
|
||||||
|
|
||||||
/*
|
/*
|
||||||
* Set *name to point to a cached version of value.
|
* Set *name to point to a cached version of value.
|
||||||
|
|
Loading…
Reference in a new issue