unposted, see 32054: Rationalise character encoding.

Shell functions are strictly ASCII for maximum portability.

Other files within the distribution may contain UTF-8 characters.

Exception for test files: where they need single character input
with the top bit set, ISO-8859-X is used (X doesn't matter as
we don't need the Euro).
This commit is contained in:
Peter Stephenson
2013-11-27 15:56:44 +00:00
parent 7423ac14e5
commit 4163ebf4c7
10 changed files with 359 additions and 346 deletions

View File

@@ -1,3 +1,16 @@
2013-11-27 Peter Stephenson <p.stephenson@samsung.com>
* unposted, see 32054 and thread:
Completion/Unix/Command/_cdrdao, Completion/Unix/Command/_git,
Completion/Unix/Command/_growisofs, Etc/ChangeLog-3.0,
Etc/ChangeLog-3.1, LICENCE, Src/Modules/clone.c,
Src/Modules/example.c, Src/module.c: Rationalise character
encodings: shell functions are strictly ASCII for maximum
portability; other files needed for building and documentation
are ASCII are UTF-8; test files may use ISO-8859-X (we don't
require the Euro symbol) where needed to get single character
input with the top bit set.
2013-11-25 Peter Stephenson <p.stephenson@samsung.com>
* unposted, see 32050, 32051: remove non-ASCII characters in

View File

@@ -277,7 +277,7 @@ _cdrdao-copy () {
# Type completion {{{1
__cdrdao-device () {
# Use cdrdao scanbus and also check what OS were running under and provide
# Use cdrdao scanbus and also check what OS we're running under and provide
# additional stuff, like devices (/dev/sg0)
local -a devices

View File

@@ -449,9 +449,9 @@ _git-checkout () {
case $state in
(branch-or-tree-ish-or-file)
# TODO: Something about *:: brings us here when we complete at “-”. I
# TODO: Something about *:: brings us here when we complete at "-". I
# guess that this makes sense in a way, as we might want to treat it as
# an argument, but I cant find anything in the documentation about this
# an argument, but I can't find anything in the documentation about this
# behavior.
[[ $line[CURRENT] = -* ]] && return
if (( CURRENT == 1 )) && [[ -z $opt_args[(I)--] ]]; then
@@ -642,7 +642,7 @@ _git-commit () {
reset_author_opt='(--author)--reset-author[make committer the author of the commit]'
fi
# TODO: --interactive isnt explicitly listed in the documentation.
# TODO: --interactive isn't explicitly listed in the documentation.
_arguments -w -S -s \
'(-a --all --interactive -o --only -i --include *)'{-a,--all}'[stage all modified and deleted paths]' \
'--fixup=[construct a commit message for use with rebase --autosquash]:' \
@@ -946,7 +946,7 @@ _git-grep () {
'*:: :->tree-or-file' && ret=0
# TODO: If --cached, --no-index, -O, or --open-files-in-pager was given,
# dont complete treeishs.
# don't complete treeishs.
case $state in
(tree-or-file)
integer first_tree last_tree start end
@@ -1176,7 +1176,7 @@ _git-notes () {
': :__git_commits' && ret=0
;;
(add)
# TODO: Only complete commits that dont have notes already, unless
# TODO: Only complete commits that don't have notes already, unless
# -f or --force has been given.
_arguments -w -S -s \
'*'{-m,--message=}'[use given note message]:message' \
@@ -2333,7 +2333,7 @@ _git-config () {
# TODO: Is it fine to use functions like this before _describe below,
# or do we need a tag loop?
# TODO: It would be nice to output _message -e TYPE label when the
# following functions dont generate any output in the case of
# following functions don't generate any output in the case of
# multi-level options.
case $IPREFIX in
(alias.)
@@ -2686,7 +2686,7 @@ _git-config () {
;;
(gitcvs.dbdriver)
# TODO: Would be nice to only include those that are installed, but I
# couldnt figure out a good way of doing that when I wrote this code.
# couldn't figure out a good way of doing that when I wrote this code.
__git_config_values -t dbi-drivers -l 'DBI driver' -- "$current" "$part[5]" \
SQLite:'use the SQLite database driver' \
Pg:'use the Pg database driver' && ret=0
@@ -2984,7 +2984,7 @@ _git-reflog () {
case $state in
(reflog-entry)
# TODO: __git_ignore_line doesnt work here for some reason.
# TODO: __git_ignore_line doesn't work here for some reason.
__git_ignore_line __git_reflog_entries && ret=0
;;
esac
@@ -3312,7 +3312,7 @@ _git-rerere () {
case $state in
(command)
# TODO: This isnt optimal, as forget get confused.
# TODO: This isn't optimal, as forget get confused.
_values command \
'clear[reset metadata used by rerere]' \
'forget[resets metadata used by rerere for specific conflict]: :__git_cached_files' \
@@ -4215,9 +4215,9 @@ _git-diff-index () {
local -a revision_options
__git_setup_revision_options
# TODO: Description of -m doesnt match that for git-rev-list. Whats going
# TODO: Description of -m doesn't match that for git-rev-list. What's going
# on here?
# TODO: With --cached, shouldnt we only list files changed in index compared
# TODO: With --cached, shouldn't we only list files changed in index compared
# to given tree-ish? This should be done for git-diff as well, in that case.
_arguments -S \
$revision_options \
@@ -4281,7 +4281,7 @@ _git-diff-tree () {
(( $+functions[_git-for-each-ref] )) ||
_git-for-each-ref () {
# TODO: Better completion for --format: should complete %(field) stuff, that
# is, %(refname), %(objecttype), %(objectsize), %(objectname) with optional *
# is, %(refname), %(objecttype), %(objectsize), %(objectname) with optional '*'
# in front.
_arguments -w -S -s \
'--count=[maximum number of refs to iterate over]: :__git_guard_number "maximum number of refs"' \
@@ -4593,7 +4593,7 @@ _git-http-push () {
'*: :__git_remote_references'
}
# NOTE: git-parse-remote isnt a user command.
# NOTE: git-parse-remote isn't a user command.
(( $+functions[_git-receive-pack] )) ||
_git-receive-pack () {
@@ -4773,7 +4773,7 @@ _git-patch-id () {
_message 'no arguments allowed; accepts patch on standard input'
}
# NOTE: git-sh-setup isnt a user command.
# NOTE: git-sh-setup isn't a user command.
(( $+functions[_git-stripspace] )) ||
_git-stripspace () {
@@ -4831,8 +4831,8 @@ __git_is_treeish () {
(( $+functions[__git_is_committish_range] )) ||
__git_is_committish_range () {
# TODO: This isnt quite right. We would like to do parts=${(~s:..(.|))},
# but that doesnt work. (This would allow us to make sure that parts only
# TODO: This isn't quite right. We would like to do parts=${(~s:..(.|))},
# but that doesn't work. (This would allow us to make sure that parts only
# contains two elements and then apply __git_is_committish on them.
[[ $1 == *..(.|)* ]] &&
__git_is_committish $(__git_committish_range_first $1) &&
@@ -5586,7 +5586,7 @@ __git_references () {
# TODO: depending on what options are on the command-line already, complete
# only tags or heads
# TODO: perhaps caching is unnecessary. usually wont contain that much data
# TODO: perhaps caching is unnecessary. usually won't contain that much data
# TODO: perhaps provide alternative here for both heads and tags (and use
# __git_heads and __git_tags)
# TODO: instead of "./.", we should be looking in the repository specified as
@@ -5646,7 +5646,7 @@ __git_files_relative () {
files=()
# Collapse // and /./ into “/”. Strip any remaining /. and “/”.
# Collapse "//" and "/./" into "/". Strip any remaining "/." and "/".
for file in ${${${${${(0)1}//\/\///}//\/.\///}%/.}%/}; do
integer i n
(( n = $#file > $#prefix ? $#file : $#prefix ))
@@ -5999,7 +5999,7 @@ __git_setup_revision_options () {
revision_options=(
$diff_options
# TODO: format pretty print format is a lot more advanced than this.
# TODO: You cant actually specify --format without a format.
# TODO: You can't actually specify --format without a format.
'(-v --header)'{--pretty=-,--format=-}'[pretty print commit messages]::format:((oneline\:"commit-ids and subject of messages"
short\:"few headers and only subject of messages"
medium\:"most parts of messages"
@@ -6192,14 +6192,14 @@ __git_config_sections () {
# -l can be used to specify a label to use (default: boolean).
#
# The first argument is the current value, so that the description of the
# current value can be suffixed with (current).
# current value can be suffixed with " (current)".
#
# The second argument is the default value, so that the description of the
# default value can be suffixed with (default).
# default value can be suffixed with " (default)".
#
# The third argument is the description to use for the true and false values.
#
# The rest of the arguments can be used to provide additional boolean values
# The rest of the arguments can be used to provide additional "boolean" values
# that should be included. They should be of the form that _describe expects.
(( $+functions[__git_config_booleans] )) ||
__git_config_booleans () {
@@ -6225,10 +6225,10 @@ __git_config_booleans () {
# -l can be used to specify a label to use (default: value).
#
# The first argument is the current value, so that the description of the
# current value can be suffixed with (current).
# current value can be suffixed with " (current)".
#
# The second argument is the default value, so that the description of the
# default value can be suffixed with (default).
# default value can be suffixed with " (default)".
#
# The rest of the arguments are values of the form VALUE:DESCRIPTION to be
# passed to _describe.
@@ -6432,12 +6432,12 @@ __git_color_attributes () {
_describe -t attributes attribute attributes $*
}
# Now, for the main driver…
# Now, for the main drive...
_git() {
if (( CURRENT > 2 )); then
local -a aliases
local -A git_aliases
# TODO: Should use -z here, but I couldnt get it to work.
# TODO: Should use -z here, but I couldn't get it to work.
aliases=(${(f)${${${(f)"$(_call_program aliases git config --get-regexp '\^alias\.')"}#alias.}/ /$'\n'}/(#e)/$'\n'})
(( $#aliases % 2 == 0 )) && git_aliases=($aliases)

View File

@@ -139,8 +139,8 @@ if (( index_of_find > 0 && index_of_find < CURRENT )); then
[[ $words[CURRENT-1] == -([HLP]|-(help|version)) ]]) ||
[[ -d $words[CURRENT-1] ]]; then
# TODO: all $words[index_of_find,CURRENT-1] must be -d.
# But we can perhaps assume that the user hasnt gone back and changed an
# argument without thinking about it carefullyotherwise, all previous
# But we can perhaps assume that the user hasn't gone back and changed an
# argument without thinking about it carefully...otherwise, all previous
# words of interest will have passed the -d test.
_arguments \
$find_paths \

File diff suppressed because it is too large Load Diff

View File

@@ -7067,7 +7067,7 @@
* Clint: 9333: Completion/User/_a2ps: a2ps can take PostScript
input files.
* Johan Sundstr<EFBFBD>m: 9331: Doc/Zsh/compwid.yo: typo.
* Johan Sundström: 9331: Doc/Zsh/compwid.yo: typo.
* Sven: 9330: Src/mem.c: debugging message not needed when using
mmap().
@@ -10568,7 +10568,7 @@
* pws: 7148: INSTALL: User subdirectory
* Thomas K<EFBFBD>hler: 7146: Completion/User/_make: didn't work.
* Thomas Köhler: 7146: Completion/User/_make: didn't work.
* pws: 7145: Completion/User/_sh: use compset -q for completing
after -c option
@@ -13536,7 +13536,7 @@ Tue Jan 6 23:29:43 1998 Andrew Main <zefram@fysh.org>
Src/zsh.h: Option RM_STAR_WAIT to wait ten seconds at the `rm
*' prompt. (zefram, 2999)
Tue Jun 3 06:14:14 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Jun 3 06:14:14 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/version.h: zsh-3.1.2 released
@@ -13544,7 +13544,7 @@ Tue Jun 3 06:14:14 1997 Zolt
* Src/jobs.c: pg(){ less;};:|pg caused suspended (tty input)
Mon Jun 2 07:52:31 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon Jun 2 07:52:31 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Doc/paths.yo.in: Updated date
@@ -13578,7 +13578,7 @@ Mon Jun 2 07:52:31 1997 Zolt
* Src/glob.c: The T glob flag did not work
Sun Jun 1 08:02:19 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Jun 1 08:02:19 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/system.h: Use _POSIX_VDISABLE is available. Fixes ^@ in zle
on some systems.
@@ -13600,7 +13600,7 @@ Sun Jun 1 08:02:19 1997 Zolt
Src/subst.c, Src/text.c, Src/utils.c, Src/watch.c: Declare
functions used locally in one file static.
Sat May 31 07:29:53 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat May 31 07:29:53 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/comp.h, Src/prototypes.h, Src/makepro.sh,
Src/Builtins/Makefile.in, Src/Makefile.in,
@@ -13609,7 +13609,7 @@ Sat May 31 07:29:53 1997 Zolt
Generate prototypes for static functions. Ideas from articles
3123 and 3124 from Zefram.
Thu May 29 05:17:31 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Thu May 29 05:17:31 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/cond.c: directories are always executable by root
@@ -13618,12 +13618,12 @@ Thu May 29 05:17:31 1997 Zolt
* aclocal.m4, configure, configure.in: --enable-ansi2knr configure
option added. From Zefram (3122)
Tue May 20 05:22:16 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue May 20 05:22:16 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/utils.c: if abort or edit used on a correct prompt, do not
attempt to correct further words on the line.
Sun May 18 18:57:08 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun May 18 18:57:08 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/builtin.c, Src/exec.c, Src/init.c, Src/signals.c, Src/jobs.c:
Do not handle SIGPIPE specially for shells with job control
@@ -13635,14 +13635,14 @@ Sun May 18 18:57:08 1997 Zolt
* Src/exec.c, Src/signals.c: `:`; while true; do; done was
uninterruptible
Mon May 12 09:01:55 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon May 12 09:01:55 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* configure, configure.in: on NetBSD <sys/time.h> is needed for
rlimit type checks. From Geoff.
* Src/hist.c: !:2-1 history expansion caused memory corruption
Sun May 11 08:52:00 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun May 11 08:52:00 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/lex.c: $((foo);bar) syntax works
@@ -13655,7 +13655,7 @@ Sun May 11 08:52:00 1997 Zolt
* Src/builtin.c: make sure zexit is not reentered when its
execution is interrupted by a signal.
Fri May 9 07:59:00 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Fri May 9 07:59:00 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/utils.c: print_if_link (used by whence -s) did not work well.
@@ -13667,7 +13667,7 @@ Fri May 9 07:59:00 1997 Zolt
* Src/jobs.c: printjobs() set errflag when the foreground process
was interrupted.
Thu May 8 09:18:56 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Thu May 8 09:18:56 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/cond.c: [[ -x file ]] does stat for privileged users
@@ -13680,11 +13680,11 @@ Thu May 8 09:18:56 1997 Zolt
* Src/Zle/zle_tricky.c, Src/hist.c, Src/lex.c, Src/parse.c:
((foo);bar) now works
Wed May 7 14:50:08 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed May 7 14:50:08 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Etc/Makefile.in: make clean should delete generated htmls
Tue May 6 06:33:06 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue May 6 06:33:06 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Etc/Makefile.in: rules to create FAQ and FAQ.html from the yodl
source
@@ -13711,7 +13711,7 @@ Tue May 6 06:33:06 1997 Zolt
Allow adding/deleting nodes during scanhashtable. From Zefram
(3058)
Mon May 5 09:29:22 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon May 5 09:29:22 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/hist.c: % word designator fix from Bruce Murphy
<packrat@iinet.net.au> (3065)
@@ -13751,7 +13751,7 @@ Mon May 5 09:29:22 1997 Zolt
Src/builtin.c, Src/params.c: local parameters can hide special
parameters. From Zefram (3048)
Sun May 4 06:16:44 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun May 4 06:16:44 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Builtins/Makefile.in, Src/Makefile.in,
Src/Modules/Makefile.in, Src/Zle/Makefile.in, aczsh.m4,
@@ -13772,7 +13772,7 @@ Sun May 4 06:16:44 1997 Zolt
created. rlimits.c moved to Src/Builtins and converted into a
loadable module.
Wed Apr 30 07:40:30 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Apr 30 07:40:30 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Doc/Zsh/grammar.yo, Src/globals.h, Src/lex.c, Src/loop.c,
Src/parse.c, Src/text.c, Src/zsh.h: ksh style ;& case
@@ -13804,7 +13804,7 @@ Wed Apr 30 07:40:30 1997 Zolt
acconfig.h, aclocal.m4: The config part of the nameclash patch
from Zefram (3028). The code part does not work with ansi2knr.
Mon Apr 28 07:28:34 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon Apr 28 07:28:34 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/comp.h, Src/Zle/comp1.c, Src/Zle/compctl.c,
Src/Zle/deltochar.c, Src/Zle/zle.h, Src/Zle/zle_bindings.c,
@@ -13865,7 +13865,7 @@ Mon Apr 28 07:28:34 1997 Zolt
* Src/Zle/zle_main.c, Src/Zle/zle_tricky.c: menu completion did
not work well with auto_param_keys. From Zefram (3011)
Sat Apr 26 06:26:11 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Apr 26 06:26:11 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Functions/zed: Reenter zed if it fails to save the file
@@ -13888,7 +13888,7 @@ Sat Apr 26 06:26:11 1997 Zolt
allow autoloading multiple builtins from a single file in one
command. From Zefram (2997)
Fri Apr 25 06:41:36 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Fri Apr 25 06:41:36 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Doc/zman.yo: use UPPERCASE yodl macro
@@ -13928,11 +13928,11 @@ Fri Apr 25 06:41:36 1997 Zolt
Doc/Zsh/seealso.yo, Doc/zsh.yo, Doc/zshmodules.yo: Module
documentations from zefram (2994)
Sun Apr 20 07:24:12 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Apr 20 07:24:12 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/init.c, Src/params.c, Src/utils.c: Remove setintenv()
Tue Apr 15 05:51:27 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Apr 15 05:51:27 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_refresh.c: SGTABTYPE can contain more than one bit
set. From Geoff (2976)
@@ -13958,16 +13958,16 @@ Tue Apr 15 05:51:27 1997 Zolt
* Src/Zle/zle_main.c: vared path caused permanent
allocation in arrayfixenv
Sat Apr 12 04:27:34 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Apr 12 04:27:34 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_misc.c: Overwrite mode did not work
Sat Mar 8 00:17:24 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Mar 8 00:17:24 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/compctl.c: Sometimes an incorrect compctl caused a core
dump. From Peter (2942)
Fri Mar 7 23:54:18 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Fri Mar 7 23:54:18 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Makefile.in: zle_binding.pro is not used
@@ -14037,7 +14037,7 @@ Tue Feb 11 20:25:59 1997 Zoltan Hidvegi <hzoli@cs.elte.hu>
* config.h.in, Src/compat.c, Src/utils.c, configure, configure.in:
stupid AIX 3.2 does not have fchdir
Tue Jan 28 00:57:37 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Jan 28 00:57:37 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/version.h: zsh-3.1.1 released
@@ -14046,7 +14046,7 @@ Tue Jan 28 00:57:37 1997 Zolt
Doc/zshmisc.1, Doc/zshoptions.1, Doc/zshparam.1, Doc/zshzle.1:
yodl generated generated documentation
Mon Jan 27 22:04:29 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon Jan 27 22:04:29 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/signals.c: temprarily set breaks to zero when executing a trap
@@ -14054,7 +14054,7 @@ Mon Jan 27 22:04:29 1997 Zolt
* Src/parse.c: words following for ((...)) are in command position.
Sun Jan 26 23:29:48 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Jan 26 23:29:48 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/builtin.c, Src/hashtable.h: fix cd -, use unrecognized
option arguments literally
@@ -14066,7 +14066,7 @@ Sun Jan 26 23:29:48 1997 Zolt
* Src/init.c: set noerrexit to -1 in setupvals()
Sat Jan 25 20:07:46 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Jan 25 20:07:46 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/subst.c, Src/utils.c: some assignments were missing from my
spacesplit fix
@@ -14079,7 +14079,7 @@ Sat Jan 25 20:07:46 1997 Zolt
* Src/Modules/Makefile.in, Src/Modules/clone.c: new builtin: start
a forked instance of the current shell on a new terminal
Thu Jan 23 15:45:27 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Thu Jan 23 15:45:27 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_refresh.c, Src/globals.h, Src/prompt.c:
redisplay fix for multiline prompts from Geoff (2817)
@@ -14099,14 +14099,14 @@ Thu Jan 23 15:45:27 1997 Zolt
* Doc/Zsh/zle.yo: what-cursor-position zle function documented
Wed Jan 22 00:54:02 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Jan 22 00:54:02 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Doc/Zsh/builtins.yo: cd -sLP documentation
* Doc/Zsh/builtins.yo, Src/module.c: zmodload -au removes defined
but not yet loaded builtins
Tue Jan 21 20:38:24 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Jan 21 20:38:24 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Doc/ztexi.yo: sitem() fix for TeX
@@ -14114,7 +14114,7 @@ Tue Jan 21 20:38:24 1997 Zolt
* Doc/Zsh/builtins.yo, Doc/ztexi.yo: TeX changes
Mon Jan 20 21:11:22 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon Jan 20 21:11:22 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/hashtable.h, acconfig.h, config.h.in, configure,
configure.in: some old compilers cannot initialise a union
@@ -14142,14 +14142,14 @@ Mon Jan 20 21:11:22 1997 Zolt
* Src/Modules/files.c: rm -r works with arbitrary deep
hierarchies. rm -r can be interrupted
Sun Jan 19 13:30:36 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Jan 19 13:30:36 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/glob.c: glob arbitrary deep directory structures
* Src/mem.c, Src/Zle/zle_keymap.c, Src/subst.c, Src/utils.c,
Src/zsh.h: add real hrealloc()
Sat Jan 18 22:34:17 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Jan 18 22:34:17 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_keymap.c: in bindkey -s the string was not zrdupped.
@@ -14165,7 +14165,7 @@ Sat Jan 18 22:34:17 1997 Zolt
alloca() and VARARR macro added which defines a variable sized
automatic array
Tue Jan 14 23:17:34 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Jan 14 23:17:34 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/glob.c: debugging changes (the change is mostrly reindentation)
@@ -14179,13 +14179,13 @@ Tue Jan 14 23:17:34 1997 Zolt
* Src/options.c, Src/init.c: the -r command line option turns on
restricted mode
Mon Jan 13 21:28:35 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon Jan 13 21:28:35 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/builtin.c, Src/exec.c, Src/hashtable.h, Src/init.c,
Src/options.c, Src/params.c, Src/text.c, Src/zsh.h: RESTRICTED
option added
Sun Jan 12 01:00:04 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Jan 12 01:00:04 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_tricky.c: automenu starts iff lastambig is true.
From Zefram (2781)
@@ -14204,7 +14204,7 @@ Sun Jan 12 01:00:04 1997 Zolt
* Src/Zle/zle.h, Src/Zle/zle_hist.c, Src/Zle/zle_utils.c: remove
some code duplications and undo fixes. From Zefram (2769)
Sat Jan 11 23:45:50 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Jan 11 23:45:50 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/compat.c: lstat is defined to stat on systems without lstat
@@ -14222,14 +14222,14 @@ Sat Jan 11 23:45:50 1997 Zolt
* Src/builtin.c: fix bugs when there was no current job after disown
Thu Jan 9 16:07:31 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Thu Jan 9 16:07:31 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/rlimits.c: zstrtorlimit was defined instead of zstrtorlimt
* Src/Modules/Makefile.in, Src/Zle/Makefile.in: some buggy makes
could not find out how to make .so from .c
Wed Jan 8 22:02:51 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Jan 8 22:02:51 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Doc/Zsh/zle.yo, Doc/zsh.texi, Doc/zshzle.man, Src/Zle/zle.h,
Src/Zle/zle_bindings.c, Src/Zle/zle_main.c, Src/Zle/zle_misc.c,
@@ -14268,7 +14268,7 @@ Wed Jan 8 22:02:51 1997 Zolt
Doc/zshoptions.yo, Doc/zshparam.yo, Doc/zshzle.yo, Doc/ztexi.yo:
documentation rewritten into yodl format by Zefram.
Tue Jan 7 23:10:24 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Jan 7 23:10:24 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/params.c, Src/builtin.c, Src/exec.c: print error when
changing read-only variables, prevent core dump when assigning
@@ -14276,7 +14276,7 @@ Tue Jan 7 23:10:24 1997 Zolt
* Src/Zle/zle_tricky.c: compctl -S bugfix
Mon Jan 6 20:43:36 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon Jan 6 20:43:36 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/exec.c, acconfig.h, config.h.in, configure, configure.in:
better /dev/fd filesystem check
@@ -14307,7 +14307,7 @@ Mon Jan 6 20:43:36 1997 Zolt
Src/Zle/zle_thingy.c, Src/Zle/zle_tricky.c, Src/Zle/zle_vi.c,
Src/mods.conf: first zle extendability patch from Zefram (2710)
Sun Jan 5 23:33:32 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Jan 5 23:33:32 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/builtin.c, Src/exec.c: do builtin autoloading in execcmd and
do not ignore BINF_PSPECIAL and BINF_MAGICEQUALS flags for the
@@ -14335,7 +14335,7 @@ Sun Jan 5 23:33:32 1997 Zolt
* Src/Zle/zle_main.c: EOF ignored in interactive mode when not in
the first line. From Peter (2713)
Fri Jan 3 02:26:03 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Fri Jan 3 02:26:03 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Misc/compctl-examples: setopt/unsetopt compctl fixes
@@ -14364,7 +14364,7 @@ Fri Jan 3 02:26:03 1997 Zolt
* Src/prompt.c: my long directories in prompt fix broke prompt
truncation. From Zefram (2687)
Thu Jan 2 20:57:33 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Thu Jan 2 20:57:33 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* configure, configure.in: alpha-linux defines signals in
<asm/signum.h>. From David Krinsky <krinsky@hcs.harvard.edu>
@@ -14400,7 +14400,7 @@ Thu Jan 2 20:57:33 1997 Zolt
* Src/conf.sed, Src/mkbltnmlst.sh, Src/mkstamp.sh: move big shell
scripts from the Makefile to separate files.
Wed Jan 1 20:04:06 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Jan 1 20:04:06 1997 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/options.c: remove union initialisation hacks and use optno
for aliases
@@ -14411,7 +14411,7 @@ Wed Jan 1 20:04:06 1997 Zolt
* Src/system.h, configure, configure.in: dgux CLOBBERS_TYPEAHEAD.
From Roderick Schertler <roderick@gate.net> (2623)
Tue Dec 31 02:28:09 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Dec 31 02:28:09 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Makefile.in, Src/Modules/Makefile.in, Src/Zle/Makefile.in:
improve proto dependency rules
@@ -14428,7 +14428,7 @@ Tue Dec 31 02:28:09 1996 Zolt
* Src/Zle/zle_tricky.c, Src/params.c, Src/utils.c: use
dupstrpfx/ztrduppfx
Mon Dec 30 23:24:46 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon Dec 30 23:24:46 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Makefile.in, Src/init.c, Src/mods.conf, Src/xmods.conf:
automatic generation of linked-in module boot code and automatic
@@ -14458,7 +14458,7 @@ Mon Dec 30 23:24:46 1996 Zolt
Rearrange functions so that they are already defined when first
referenced.
Sun Dec 29 22:34:21 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Dec 29 22:34:21 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Doc/zsh.texi, Doc/zshexpn.man, Doc/zshmisc.man, Src/glob.c,
Src/lex.c: brace related bugfixes
@@ -14468,7 +14468,7 @@ Sun Dec 29 22:34:21 1996 Zolt
* Src/exec.c, Src/loop.c, Src/parse.c: case argument should not be
globbed
Sat Dec 28 19:55:04 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Dec 28 19:55:04 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/options.c (optlookup): no prefix was ignored
@@ -14477,7 +14477,7 @@ Sat Dec 28 19:55:04 1996 Zolt
addbuiltins() and deletebuiltins() functions to add/delete a
group of builtins. From Zefram (2646)
Fri Dec 27 23:33:20 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Fri Dec 27 23:33:20 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Modules/example.c, Src/Zle/compctl.c, Src/Zle/zle_main.c,
Src/init.c, Src/module.c: addbuiltin can now set all members of
@@ -14492,7 +14492,7 @@ Fri Dec 27 23:33:20 1996 Zolt
* Src/exec.c: minor noclobber changes
Thu Dec 26 22:43:13 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Thu Dec 26 22:43:13 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/exec.c, Src/hist.c, Src/lex.c, Src/mem.c, Src/params.c,
Src/subst.c, Src/text.c, Src/utils.c: all "can't happen"
@@ -14541,7 +14541,7 @@ Thu Dec 26 22:43:13 1996 Zolt
* Src/builtin.c, Src/compat.c, Src/utils.c: handle arbitrary long
pathnames in pwd
Wed Dec 25 16:04:45 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Dec 25 16:04:45 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Doc/zsh.texi, Doc/zshoptions.man, Src/Makefile.in,
Src/Zle/zle_tricky.c, Src/builtin.c, Src/glob.c, Src/globals.h,
@@ -14549,7 +14549,7 @@ Wed Dec 25 16:04:45 1996 Zolt
Src/utils.c, Src/zsh.h, Src/options.c: New hash table for
options, option aliases. From Zefram (2612)
Tue Dec 24 02:25:20 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Dec 24 02:25:20 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_tricky.c, Src/glob.c, Src/hashtable.c, Src/utils.c:
move . and .. special case handling into zreaddir(). From
@@ -14567,7 +14567,7 @@ Tue Dec 24 02:25:20 1996 Zolt
improvements, better support for builtin modules. From Zefram
(2611)
Sat Dec 21 02:00:12 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Dec 21 02:00:12 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/version.h: zsh-3.1.0 released
@@ -14583,7 +14583,7 @@ Sat Dec 21 02:00:12 1996 Zolt
* configure, configure.in: SunOS 4 shared libraries do not work
when they are stripped
Thu Dec 19 21:27:17 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Thu Dec 19 21:27:17 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/init.c: work around a bug in NeXTStep 3.2 which caused slow
refresh
@@ -14591,19 +14591,19 @@ Thu Dec 19 21:27:17 1996 Zolt
* Etc/FAQ: FAQ from Peter: Id: zsh.FAQ,v 2.22 1996/12/19 09:52:11
pws Exp
Wed Dec 18 23:51:24 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Dec 18 23:51:24 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Doc/zsh.texi, Etc/FAQ, META-FAQ: ftp.prz.tu-berlin.de no longer
mirrors zsh, uiarchive.uiuc.edu name correction
Tue Dec 17 20:08:58 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Dec 17 20:08:58 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/params.c: remove some compiler varnings
* Src/Makefile.in: rlimits.h depends on rlimits.awk. Cosmetic
changes. From Zefram (2589)
Mon Dec 16 03:33:12 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon Dec 16 03:33:12 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* README: unknown limits should no longer be a problem
@@ -14613,13 +14613,13 @@ Mon Dec 16 03:33:12 1996 Zolt
* Src/builtin.c: fg %% failed and disabled job control sometimes
when there were no current job
Sun Dec 15 01:07:40 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Dec 15 01:07:40 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* README: beta warning
* Misc/compctl-examples: compctl for zmodload
Sat Dec 14 22:50:00 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Dec 14 22:50:00 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_main.c: Remove unnecessary prefix delay in zle.
From Zefram (2583)
@@ -14635,7 +14635,7 @@ Sat Dec 14 22:50:00 1996 Zolt
* configure, configure.in: working fifos should be tested in /tmp
Wed Dec 11 02:30:39 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Dec 11 02:30:39 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_tricky.c, Src/builtin.c, Src/exec.c, Src/globals.h,
Src/hist.c, Src/init.c, Src/input.c, Src/lex.c, Src/zsh.h:
@@ -14646,7 +14646,7 @@ Wed Dec 11 02:30:39 1996 Zolt
* Src/params.c: use the heap in getstrvalue()
Tue Dec 10 02:27:35 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Dec 10 02:27:35 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_refresh.c: single line zle refresh bugfix from Geoff
(2549)
@@ -14661,7 +14661,7 @@ Tue Dec 10 02:27:35 1996 Zolt
* Src/builtin.c: use the heap in zexit()
Sun Dec 8 21:32:06 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Dec 8 21:32:06 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/utils.c, Doc/zshbuiltins.man, Src/hashtable.h, Src/module.c:
zmodload can be used to define atoloaded builtins and module
@@ -14709,7 +14709,7 @@ Sun Dec 8 21:32:06 1996 Zolt
* Src/builtin.c: show metafied characters correctly in bad option
errors. From Zefram (2497)
Thu Dec 5 03:59:45 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Thu Dec 5 03:59:45 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Makefile.in, Src/Modules/Makefile.in, Src/Modules/example.c,
Src/Zle/Makefile.in, Src/Zle/deltochar.c, Src/Zle/zle.h,
@@ -14726,7 +14726,7 @@ Thu Dec 5 03:59:45 1996 Zolt
cleanup_modname is back since on elf all module use one common
name space. Lots of other changes.
Wed Nov 27 03:20:53 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Nov 27 03:20:53 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_main.c, Src/Zle/zle_vi.c: ANSI was broken and fixed
again in zle_main.c ESC in vi command mode caused SEGV. From
@@ -14736,7 +14736,7 @@ Wed Nov 27 03:20:53 1996 Zolt
--enable-zsh-debug. Link non-debugged zsh with -s. From Zefram
(2479)
Tue Nov 26 02:45:15 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Nov 26 02:45:15 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/exec.c: the STTY parameter did not work well when pipes were
used. From Peter (2474)
@@ -14767,7 +14767,7 @@ Tue Nov 26 02:45:15 1996 Zolt
* Etc/FAQ: FAQ from Peter: Id: zsh.FAQ,v 2.21 1996/11/25 09:13:28
pws Exp
Mon Nov 25 02:39:08 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon Nov 25 02:39:08 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/module.c: try to load the modules with .DL_EXT appended
first. Honor PATH_DIRS when loading a module.
@@ -14784,7 +14784,7 @@ Mon Nov 25 02:39:08 1996 Zolt
Src/init.c, Src/main.c, Src/module.c: modules can now statically
compiled into zsh. From Zefram (2455)
Sun Nov 24 22:44:12 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Nov 24 22:44:12 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Zle/zle_move.c: vi-goto-mark fix from Thorsten
@@ -14795,7 +14795,7 @@ Sun Nov 24 22:44:12 1996 Zolt
Src/lex.c, Src/loop.c, Src/parse.c, Src/utils.c, Src/zsh.h: for
((expr; expr; expr)) command added
Sat Nov 23 23:34:58 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Nov 23 23:34:58 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/exec.c:
((...)) substituted the expression twice and coredumped on (())
@@ -14813,7 +14813,7 @@ Sat Nov 23 23:34:58 1996 Zolt
* Src/subst.c, acconfig.h, config.h.in, configure, configure.in:
added configure check for variable-length automatic arrays
Wed Nov 20 00:58:06 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Nov 20 00:58:06 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/utils.c: The spell checker always tries to fix as many
leading directory compontents as possible. From Bart (2429)
@@ -14825,7 +14825,7 @@ Wed Nov 20 00:58:06 1996 Zolt
* Src/Zle/zle_tricky.c: my spell-word fix used an uninitialised
pointer. Fix from Bart (2428)
Sun Nov 17 21:21:22 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Nov 17 21:21:22 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Makefile.in: fix the .SUFFIXES list
@@ -14847,7 +14847,7 @@ Sun Nov 17 21:21:22 1996 Zolt
* Src/exec.c, Src/parse.c, Src/text.c, Src/zsh.h: do not convert
((...)) to builtin let internally.
Sat Nov 16 23:57:40 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Nov 16 23:57:40 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/zle_tricky.c: spell-word zle function did not work for word
beginning with a tilde
@@ -14871,14 +14871,14 @@ Sat Nov 16 23:57:40 1996 Zolt
* Src/zle_tricky.c: the cursor moved back on TAB when it was on
"". From Zefram (2415)
Thu Nov 14 12:59:25 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Thu Nov 14 12:59:25 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/zle_refresh.c: one more refresh fix from Geoff (2404)
* Src/Makefile.in, Src/Modules/deltochar.c, Src/Modules/example.c,
configure, configure.in: move modules into Src/Modules
Wed Nov 13 21:47:28 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Nov 13 21:47:28 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Modules/deltochar.c, Src/Modules/example.c, Src/module.c:
unload the module if the boot routine failed
@@ -14905,7 +14905,7 @@ Wed Nov 13 21:47:28 1996 Zolt
Src/zle_main.c, Src/zle_misc.c, Src/zle_tricky.c, Src/zle_vi.c:
zle function modules from Peter (2339)
Tue Nov 12 21:35:18 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Tue Nov 12 21:35:18 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/init.c, Src/zle_refresh.c: zle-refresh patch from Geoff (2336)
@@ -14914,7 +14914,7 @@ Tue Nov 12 21:35:18 1996 Zolt
* Src/Makefile.in: added automatic ansi2knr rules
Mon Nov 11 21:55:17 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Mon Nov 11 21:55:17 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Makefile.in, Src/Modules/example.c, Src/module.c, configure,
configure.in: various module changes from Zefram (2338)
@@ -14922,12 +14922,12 @@ Mon Nov 11 21:55:17 1996 Zolt
* configure, configure.in: a $ was missing. IRIX gcc needs
-shared for modules. From Peter
Wed Nov 6 20:54:33 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Wed Nov 6 20:54:33 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Makefile.in, Src/mod_example.c: moduule modifications for
old compilers
Sun Nov 3 23:00:05 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sun Nov 3 23:00:05 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/system.h: set OPEN_MAX to 64 if NOFILE is not defined
@@ -14937,7 +14937,7 @@ Sun Nov 3 23:00:05 1996 Zolt
* Functions/pushd: setopt localoptions must come after
emulate -R zsh
Sat Nov 2 22:47:53 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Sat Nov 2 22:47:53 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/compat.c, Src/hashtable.c, Src/utils.c: do not blindly
assume that . and .. are always the first two enrties in a
@@ -14946,7 +14946,7 @@ Sat Nov 2 22:47:53 1996 Zolt
* Src/utils.c: max_zsh_fd should not be decreased below zero
Thu Oct 31 01:38:10 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Thu Oct 31 01:38:10 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/Makefile.in, Src/globals.h, Src/hashtable.c,
Src/hashtable.h, Src/init.c, Src/mod_example.c, Src/module.c,
@@ -14960,6 +14960,6 @@ Thu Oct 31 01:38:10 1996 Zolt
* Src/builtin.c: read -c ignored its first parameter
Fri Oct 25 20:50:38 1996 Zolt<EFBFBD>n Hidv<EFBFBD>gi <hzoli@cs.elte.hu>
Fri Oct 25 20:50:38 1996 Zoltán Hidvégi <hzoli@cs.elte.hu>
* Src/version.h: zsh-3.0.1 released

View File

@@ -11,7 +11,7 @@ may simply be omitted.
--
The Z Shell is copyright (c) 1992-2009 Paul Falstad, Richard Coleman,
Zolt<EFBFBD>n Hidv<EFBFBD>gi, Andrew Main, Peter Stephenson, Sven Wischnowsky, and
Zoltán Hidvégi, Andrew Main, Peter Stephenson, Sven Wischnowsky, and
others. All rights reserved. Individual authors, whether or not
specifically named, retain copyright in all changes; in what follows, they
are referred to as `the Zsh Development Group'. This is for convenience

View File

@@ -3,7 +3,7 @@
*
* This file is part of zsh, the Z shell.
*
* Copyright (c) 1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi
* Copyright (c) 1997 Zoltán Hidvégi
* All rights reserved.
*
* Permission is hereby granted, without written agreement and without
@@ -12,16 +12,16 @@
* purpose, provided that the above copyright notice and the following
* two paragraphs appear in all copies of this software.
*
* In no event shall Zolt<EFBFBD>n Hidv<EFBFBD>gi or the Zsh Development Group be liable
* In no event shall Zoltán Hidvégi or the Zsh Development Group be liable
* to any party for direct, indirect, special, incidental, or consequential
* damages arising out of the use of this software and its documentation,
* even if Zolt<EFBFBD>n Hidv<EFBFBD>gi and the Zsh Development Group have been advised of
* even if Zoltán Hidvégi and the Zsh Development Group have been advised of
* the possibility of such damage.
*
* Zolt<EFBFBD>n Hidv<EFBFBD>gi and the Zsh Development Group specifically disclaim any
* Zoltán Hidvégi and the Zsh Development Group specifically disclaim any
* warranties, including, but not limited to, the implied warranties of
* merchantability and fitness for a particular purpose. The software
* provided hereunder is on an "as is" basis, and Zolt<EFBFBD>n Hidv<EFBFBD>gi and the
* provided hereunder is on an "as is" basis, and Zoltán Hidvégi and the
* Zsh Development Group have no obligation to provide maintenance,
* support, updates, enhancements, or modifications.
*

View File

@@ -3,7 +3,7 @@
*
* This file is part of zsh, the Z shell.
*
* Copyright (c) 1996-1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi
* Copyright (c) 1996-1997 Zoltán Hidvégi
* All rights reserved.
*
* Permission is hereby granted, without written agreement and without
@@ -12,16 +12,16 @@
* purpose, provided that the above copyright notice and the following
* two paragraphs appear in all copies of this software.
*
* In no event shall Zolt<EFBFBD>n Hidv<EFBFBD>gi or the Zsh Development Group be liable
* In no event shall Zoltán Hidvégi or the Zsh Development Group be liable
* to any party for direct, indirect, special, incidental, or consequential
* damages arising out of the use of this software and its documentation,
* even if Zolt<EFBFBD>n Hidv<EFBFBD>gi and the Zsh Development Group have been advised of
* even if Zoltán Hidvégi and the Zsh Development Group have been advised of
* the possibility of such damage.
*
* Zolt<EFBFBD>n Hidv<EFBFBD>gi and the Zsh Development Group specifically disclaim any
* Zoltán Hidvégi and the Zsh Development Group specifically disclaim any
* warranties, including, but not limited to, the implied warranties of
* merchantability and fitness for a particular purpose. The software
* provided hereunder is on an "as is" basis, and Zolt<EFBFBD>n Hidv<EFBFBD>gi and the
* provided hereunder is on an "as is" basis, and Zoltán Hidvégi and the
* Zsh Development Group have no obligation to provide maintenance,
* support, updates, enhancements, or modifications.
*

View File

@@ -3,7 +3,7 @@
*
* This file is part of zsh, the Z shell.
*
* Copyright (c) 1996-1997 Zolt<EFBFBD>n Hidv<EFBFBD>gi
* Copyright (c) 1996-1997 Zoltán Hidvégi
* All rights reserved.
*
* Permission is hereby granted, without written agreement and without
@@ -12,16 +12,16 @@
* purpose, provided that the above copyright notice and the following
* two paragraphs appear in all copies of this software.
*
* In no event shall Zolt<EFBFBD>n Hidv<EFBFBD>gi or the Zsh Development Group be liable
* In no event shall Zoltán Hidvégi or the Zsh Development Group be liable
* to any party for direct, indirect, special, incidental, or consequential
* damages arising out of the use of this software and its documentation,
* even if Zolt<EFBFBD>n Hidv<EFBFBD>gi and the Zsh Development Group have been advised of
* even if Zoltán Hidvégi and the Zsh Development Group have been advised of
* the possibility of such damage.
*
* Zolt<EFBFBD>n Hidv<EFBFBD>gi and the Zsh Development Group specifically disclaim any
* Zoltán Hidvégi and the Zsh Development Group specifically disclaim any
* warranties, including, but not limited to, the implied warranties of
* merchantability and fitness for a particular purpose. The software
* provided hereunder is on an "as is" basis, and Zolt<EFBFBD>n Hidv<EFBFBD>gi and the
* provided hereunder is on an "as is" basis, and Zoltán Hidvégi and the
* Zsh Development Group have no obligation to provide maintenance,
* support, updates, enhancements, or modifications.
*/