diff options
author | ryoon <ryoon> | 2013-01-03 15:37:23 +0000 |
---|---|---|
committer | ryoon <ryoon> | 2013-01-03 15:37:23 +0000 |
commit | 064cc7cec0a6f98b5b9a1190286859b145f91a66 (patch) | |
tree | 47b413e0f18ea883fb9bba4d33631ac2918c1d80 /shells/zsh/Makefile | |
parent | 65454669253e66d0fa514abfed4a342e5713aaca (diff) | |
download | pkgsrc-064cc7cec0a6f98b5b9a1190286859b145f91a66.tar.gz |
Update to 5.0.2
Changelog:
Changes since 5.0.0
-------------------
Numeric constants encountered in mathematical expressions (but not other
contexts) can contain underscores as separators that will be ignored on
evaluation, as allowed in other scripting languages. For example,
0xFFFF_FFFF, or 3.141_592_654.
"functions -T" turns on tracing for the specified function(s) only,
similar to "functions -t" except that tracing is turned off for any
functions called from the specified one(s) that don't also have the -t
or -T flag.
In file completion, the recursive-files style can be set to an array of
patterns to match against "$PWD/". In any matched location, it is
possibly to complete files in arbitrarily deep subdirectories without
needing to type the directory prefix. See example in the zshcompsys
manual.
The _user_expand completer now allows expansion functions in the
user-expand files to return a string in REPLY that will be used to name
the set of expansions returned.
Diffstat (limited to 'shells/zsh/Makefile')
-rw-r--r-- | shells/zsh/Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/shells/zsh/Makefile b/shells/zsh/Makefile index 65a064d0c5f..01562a24b9e 100644 --- a/shells/zsh/Makefile +++ b/shells/zsh/Makefile @@ -1,10 +1,9 @@ -# $NetBSD: Makefile,v 1.60 2012/08/17 12:22:51 wiz Exp $ +# $NetBSD: Makefile,v 1.61 2013/01/03 15:37:23 ryoon Exp $ .include "../../shells/zsh/Makefile.common" -ZSH_VERSION= 5.0.0 +ZSH_VERSION= 5.0.2 ZSH_MAINTAINER= uebayasi@NetBSD.org -PKGREVISION= 2 CONFIGURE_ARGS+= --disable-gdbm |