1
0
Fork 0
mirror of git://git.code.sf.net/p/zsh/code synced 2025-01-19 11:31:26 +01:00

unposted: updates for 4.0.2-test-1.

Update references to 4.0.2 to 4.0.3.
Additional mod_export declarations.
Additions to .distfiles.
This commit is contained in:
Peter Stephenson 2013-11-06 19:25:07 +00:00
parent 73746daf7f
commit 375115c7df
9 changed files with 23 additions and 11 deletions

View file

@ -1,3 +1,11 @@
2013-11-06 Peter Stephenson <p.w.stephenson@ntlworld.com>
* unposted: Completion/Debian/Command/.distfiles,
Completion/Unix/Type/.distfiles, Config/version.mk, Etc/FAQ.yo,
README, Src/pattern.c, Src/signals.c, Test/.distfiles: updates
for 4.0.2-test-1 in preparation for 4.0.3. Updated files
in .distfiles and add mod_export declarations.
2013-11-03 Peter Stephenson <p.w.stephenson@ntlworld.com> 2013-11-03 Peter Stephenson <p.w.stephenson@ntlworld.com>
* Stefan Neudorf: 31936: Doc/Zsh/builtins.yo, * Stefan Neudorf: 31936: Doc/Zsh/builtins.yo,

View file

@ -14,6 +14,7 @@ _cdbs-edit-patch
_dak _dak
_dchroot _dchroot
_dchroot-dsa _dchroot-dsa
_dcut
_debchange _debchange
_debdiff _debdiff
_debfoster _debfoster

View file

@ -34,6 +34,7 @@ _perl_basepods
_perl_modules _perl_modules
_pids _pids
_ports _ports
_postscript
_printers _printers
_ps1234 _ps1234
_pspdf _pspdf

View file

@ -27,5 +27,5 @@
# This must also serve as a shell script, so do not add spaces around the # This must also serve as a shell script, so do not add spaces around the
# `=' signs. # `=' signs.
VERSION=5.0.2-dev-0 VERSION=5.0.2-test-1
VERSION_DATE='January 3, 2013' VERSION_DATE='November 6, 2013'

View file

@ -301,7 +301,7 @@ sect(On what machines will it run?)
sect(What's the latest version?) sect(What's the latest version?)
Zsh 5.0.2 is the latest production version. For details of all the Zsh 5.0.3 is the latest production version. For details of all the
changes, see the NEWS file in the source distribution. changes, see the NEWS file in the source distribution.
A beta of the next version is sometimes available. Development of zsh is A beta of the next version is sometimes available. Development of zsh is

5
README
View file

@ -5,9 +5,8 @@ THE Z SHELL (ZSH)
Version Version
------- -------
This is version 5.0.2 of the shell. This is a stable release. This is version 5.0.3 of the shell. This is a stable release.
There are minor new features as well as bug fixes since 5.0.0 and There are minor new features as well as bug fixes since 5.0.2.
one bug fix since the short-lived 5.0.1.
Installing Zsh Installing Zsh
-------------- --------------

View file

@ -237,7 +237,7 @@ static const char zpc_chars[ZPC_COUNT] = {
* NULL means no way of turning this on or off. * NULL means no way of turning this on or off.
*/ */
/**/ /**/
const char *zpc_strings[ZPC_COUNT] = { mod_export const char *zpc_strings[ZPC_COUNT] = {
NULL, NULL, "|", NULL, "~", "(", "?", "*", "[", "<", NULL, NULL, "|", NULL, "~", "(", "?", "*", "[", "<",
"^", "#", NULL, "?(", "*(", "+(", "!(", "@(" "^", "#", NULL, "?(", "*(", "+(", "!(", "@("
}; };
@ -247,7 +247,7 @@ const char *zpc_strings[ZPC_COUNT] = {
* using "disable -p". * using "disable -p".
*/ */
/**/ /**/
char zpc_disables[ZPC_COUNT]; mod_export char zpc_disables[ZPC_COUNT];
/* /*
* Stack of saved (compressed) zpc_disables for function scope. * Stack of saved (compressed) zpc_disables for function scope.

View file

@ -185,7 +185,7 @@ noholdintr(void)
* only the given signal */ * only the given signal */
/**/ /**/
sigset_t mod_export sigset_t
signal_mask(int sig) signal_mask(int sig)
{ {
sigset_t set; sigset_t set;
@ -202,7 +202,8 @@ signal_mask(int sig)
/**/ /**/
#ifndef BSD_SIGNALS #ifndef BSD_SIGNALS
sigset_t /**/
mod_export sigset_t
signal_block(sigset_t set) signal_block(sigset_t set)
{ {
sigset_t oset; sigset_t oset;
@ -245,7 +246,8 @@ signal_block(sigset_t set)
/* Unblock the signals in the given signal * /* Unblock the signals in the given signal *
* set. Return the old signal set. */ * set. Return the old signal set. */
sigset_t /**/
mod_export sigset_t
signal_unblock(sigset_t set) signal_unblock(sigset_t set)
{ {
sigset_t oset; sigset_t oset;

View file

@ -41,6 +41,7 @@ V05styles.ztst
V06parameter.ztst V06parameter.ztst
V07pcre.ztst V07pcre.ztst
V08zpty.ztst V08zpty.ztst
X02zlevi.ztst
Y01completion.ztst Y01completion.ztst
Y02compmatch.ztst Y02compmatch.ztst
Y03arguments.ztst Y03arguments.ztst