mirror of
git://git.code.sf.net/p/zsh/code
synced 2025-09-17 15:01:40 +02:00
unposted: prepare for release of 4.3.3
This commit is contained in:
parent
7bb711a3d6
commit
f48fa9eb9d
9 changed files with 25 additions and 10 deletions
|
@ -1,3 +1,10 @@
|
||||||
|
2007-04-16 Peter Stephenson <pws@csr.com>
|
||||||
|
|
||||||
|
* unposted: ChangeLog, README, Completion/Base/Utility/.distfiles,
|
||||||
|
Config/version.mk, Functions/Calendar/.distfiles,
|
||||||
|
Functions/Misc/.distfiles, Src/.distfiles, Src/sort.c,
|
||||||
|
Src/utils.c: prepare for release of 4.3.3.
|
||||||
|
|
||||||
2007-04-15 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
2007-04-15 Peter Stephenson <p.w.stephenson@ntlworld.com>
|
||||||
|
|
||||||
* 23278: Src/sort.c, Test/D07multibyte.ztst: Fix
|
* 23278: Src/sort.c, Test/D07multibyte.ztst: Fix
|
||||||
|
@ -1990,7 +1997,7 @@
|
||||||
|
|
||||||
* 22301: Completion/Base/Completer/_expand: enable alises for the
|
* 22301: Completion/Base/Completer/_expand: enable alises for the
|
||||||
expansion of $(...) and `...`.
|
expansion of $(...) and `...`.
|
||||||
|
|
||||||
* 22271 (updated): Src/subst.c, Src/linklist.c, Src/zsh.h: got rid
|
* 22271 (updated): Src/subst.c, Src/linklist.c, Src/zsh.h: got rid
|
||||||
of the mult_isarr global from subst.c by using the LinkList's new
|
of the mult_isarr global from subst.c by using the LinkList's new
|
||||||
flag integer.
|
flag integer.
|
||||||
|
|
|
@ -4,5 +4,5 @@ _alternative _call_program _nothing _sub_commands
|
||||||
_arg_compile _combination _regex_arguments _values
|
_arg_compile _combination _regex_arguments _values
|
||||||
_arguments _set_command _retrieve_cache _guard
|
_arguments _set_command _retrieve_cache _guard
|
||||||
_cache_invalid _describe _sep_parts _pick_variant
|
_cache_invalid _describe _sep_parts _pick_variant
|
||||||
_call_function _multi_parts _store_cache
|
_call_function _multi_parts _store_cache _regex_words
|
||||||
'
|
'
|
||||||
|
|
|
@ -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=4.3.2-dev-1
|
VERSION=4.3.3
|
||||||
VERSION_DATE='March 7, 2006'
|
VERSION_DATE='April 16, 2006'
|
||||||
|
|
|
@ -1,6 +1,13 @@
|
||||||
DISTFILES_SRC='
|
DISTFILES_SRC='
|
||||||
.distfiles
|
.distfiles
|
||||||
age
|
age
|
||||||
calendar calendar_add calendar_lockfiles calendar_read
|
calendar
|
||||||
calendar_scandate calendar_show calendar_sort
|
calendar_add
|
||||||
|
calendar_edit
|
||||||
|
calendar_lockfiles
|
||||||
|
calendar_read
|
||||||
|
calendar_scandate
|
||||||
|
calendar_show
|
||||||
|
calendar_showdate
|
||||||
|
calendar_sort
|
||||||
'
|
'
|
||||||
|
|
|
@ -1,5 +1,6 @@
|
||||||
DISTFILES_SRC='
|
DISTFILES_SRC='
|
||||||
.distfiles
|
.distfiles
|
||||||
|
add-zsh-hook
|
||||||
allopt getjobs mere relative zcalc zmv zargs
|
allopt getjobs mere relative zcalc zmv zargs
|
||||||
checkmail harden nslookup run-help zed zrecompile
|
checkmail harden nslookup run-help zed zrecompile
|
||||||
colors is-at-least promptnl tetris zkbd zstyle+
|
colors is-at-least promptnl tetris zkbd zstyle+
|
||||||
|
|
2
README
2
README
|
@ -5,7 +5,7 @@ THE Z SHELL (ZSH)
|
||||||
Version
|
Version
|
||||||
-------
|
-------
|
||||||
|
|
||||||
This is version 4.3.2 of the shell. This is a development release,
|
This is version 4.3.3 of the shell. This is a development release,
|
||||||
but is believed to be reasonably stable. Sites where the users need to
|
but is believed to be reasonably stable. Sites where the users need to
|
||||||
edit command lines with multibyte characters (in particular UTF-8)
|
edit command lines with multibyte characters (in particular UTF-8)
|
||||||
will probably want to upgrade.
|
will probably want to upgrade.
|
||||||
|
|
|
@ -7,7 +7,7 @@ DISTFILES_SRC='
|
||||||
hist.c init.c input.c jobs.c lex.c linklist.c loop.c main.c makepro.awk
|
hist.c init.c input.c jobs.c lex.c linklist.c loop.c main.c makepro.awk
|
||||||
math.c mem.c mkbltnmlst.sh mkmakemod.sh
|
math.c mem.c mkbltnmlst.sh mkmakemod.sh
|
||||||
module.c options.c params.c parse.c pattern.c prompt.c prototypes.h
|
module.c options.c params.c parse.c pattern.c prompt.c prototypes.h
|
||||||
signals.c signals.h string.c subst.c system.h text.c utils.c
|
signals.c signals.h sort.c string.c subst.c system.h text.c utils.c
|
||||||
watch.c zsh.h zsh.mdd ztype.h
|
watch.c zsh.h zsh.mdd ztype.h
|
||||||
zsh.rc zsh.ico
|
zsh.rc zsh.ico
|
||||||
'
|
'
|
||||||
|
|
|
@ -195,7 +195,7 @@ zstrcmp(const char *as, const char *bs, int sortflags)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**/
|
/**/
|
||||||
void
|
mod_export void
|
||||||
strmetasort(char **array, int sortwhat, int *unmetalenp)
|
strmetasort(char **array, int sortwhat, int *unmetalenp)
|
||||||
{
|
{
|
||||||
char **arrptr;
|
char **arrptr;
|
||||||
|
|
|
@ -4028,7 +4028,7 @@ mb_metacharlenconv(const char *s, wint_t *wcp)
|
||||||
*/
|
*/
|
||||||
|
|
||||||
/**/
|
/**/
|
||||||
int
|
mod_export int
|
||||||
mb_metastrlen(char *ptr, int width)
|
mb_metastrlen(char *ptr, int width)
|
||||||
{
|
{
|
||||||
char inchar, *laststart;
|
char inchar, *laststart;
|
||||||
|
|
Loading…
Reference in a new issue