summaryrefslogtreecommitdiff
AgeCommit message (Collapse)AuthorFilesLines
2013-11-2932066: fix %r and %S in vcs_info formats when a repository subdirectory is ↵Barton E. Schaefer3-3/+10
accessed via a symlink 31985 Clemens Hammacher and 32064 Hong Xu
2013-11-2732061: Fix "use of uninitialized memory" in metafyBarton E. Schaefer2-2/+6
2013-11-27unposted: fix ChangeLog reference to last test versionPeter Stephenson1-1/+1
2013-11-27unposted, see 32054: Rationalise character encoding.Peter Stephenson10-346/+359
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).
2013-11-25unposted, see 32050, 32051: remove non-ASCII characters in functionsPeter Stephenson3-2/+7
2013-11-25Merge branch 'master' of ssh://git.code.sf.net/p/zsh/codePeter Stephenson0-0/+0
2013-11-25unposted: Prepare 5.0.2-test-2.Peter Stephenson3-2/+8
2013-11-25unposted: Prepare 5.0.3-test-2.Peter Stephenson3-2/+8
2013-11-2532045 (adjusted by 32047): use makefile dependencies to determine whether toBarton E. Schaefer4-7/+21
rebuild helpfiles
2013-11-2332031 plus missed _run_help: get helpfiles install path corect in functionsPeter Stephenson7-6/+31
2013-11-2032030: need to revert empty glob qualifier change.Peter Stephenson3-1/+14
It failed on an empty expansion that (N) was supposed to remove. Add test for this case.
2013-11-1932023: better interrupt handling at RM_STAR_WAITBarton E. Schaefer2-0/+6
2013-11-1832008: complete "." and ":" for run-help, clean Doc/help in makeMartin Vaeth4-3/+10
2013-11-18Fix merge of ChangeLogPeter Stephenson2-2/+7
2013-11-18follow up to 31959: I patched the files to the wrong place.Peter Stephenson3-0/+5
2013-11-1831995: Han Pingtian: glob qualifiers cannot follow an empty pattern, so a ↵Barton E. Schaefer2-2/+7
leading paren means grouping
2013-11-1732001: fix crash on ${:*} and ${:|}Peter Stephenson3-0/+22
2013-11-16Another missed bit of 31988.Barton E. Schaefer1-4/+1
2013-11-15One missed hunk from 31988.Barton E. Schaefer1-2/+4
2013-11-15Martin Vaeth: 31988 (plus missing semicolon): remove LC_CTYPE heuristics, ↵Barton E. Schaefer3-34/+7
assure clean environment, force LANG=C
2013-11-1431984: new df completionJun T2-0/+81
2013-11-1431983: suppress warning from cmp when genering patchlevel.h.Peter Stephenson2-1/+4
The warning doesn't indicate a problem, so isn't useful.
2013-11-1431982: detection of floating point constants was problematic.Peter Stephenson3-8/+17
Remove the cause and fix the original problem with floating point numbers with leading zeros (users/17445) a different way.
2013-11-1331977: It's OK to autoload a feature that's loaded.Peter Stephenson2-1/+17
Simply check that the feature is from the same module that's requested.
2013-11-1331971: locale fix for helpfilesJun T2-5/+7
2013-11-1331959 tweak: put this back againPeter Stephenson1-0/+1
2013-11-13Merge remote commitPeter Stephenson2-2/+9
2013-11-1331959: missed filesMartin Vaeth4-1/+11
2013-11-1231966: skip introductory paragraphs when processing "man zshbuiltins".Bart Schaefer2-2/+9
2013-11-12Fix merge conflict amending ChangeLog.Peter Stephenson0-0/+0
2013-11-1231959 (plus tweak to .gitignore): make help files during installationMartin Vaeth10-25/+172
2013-11-1231959 (plus tweak to .gitignore): make help files during installationMartin Vaeth10-25/+171
2013-11-1231961: rationalise fd watching to use structurePeter Stephenson4-60/+61
2013-11-08unposted: update some incorrect version numbers in ChangeLogPeter Stephenson1-1/+3
2013-11-08unposted: refer to zle -Fw in NEWSPeter Stephenson2-0/+7
2013-11-0831940: zcalc -e uses arguments as inputPeter Stephenson3-10/+37
2013-11-0731937: zle -Fw uses widget semantics for file descriptor handlerPeter Stephenson7-27/+79
2013-11-06unposted: updates for 4.0.2-test-1.Peter Stephenson9-11/+23
Update references to 4.0.2 to 4.0.3. Additional mod_export declarations. Additions to .distfiles.
2013-11-0331936: Rationalise limits for threadsStefan Neudorf4-15/+12
2013-11-0331935: further updates to limits for BSDStefan Neudorf4-23/+20
2013-10-3131930 / 31934: New limits from BSD.Stefan Neudorf5-1/+71
Avoid clash of uses for ulimit -k.
2013-10-2931929: Src/jobs.c: fix DPUTS3() test condition from 31906.Barton E. Schaefer2-1/+5
2013-10-28Mention HISTORY_IGNOREBart Schaefer2-0/+9
2013-10-2831922: zlecharasstring missed flip of bit 5 after MetaPeter Stephenson2-0/+6
2013-10-2731919: fix deadlock when a shell builtin with a multio redirection is used ↵Barton E. Schaefer3-7/+15
on the left side of a pipeline Make sure stdin/out/err file descriptors are closed for the multio copy process, which means not re-using those descriptors after they are closed and marked FDT_UNUSED in fdtable[]. For completeness, initialize their fdtable[] state to FDT_EXTERNAL.
2013-10-27Some syntax adjustments in _expand_word_and_keep. Add a working URL.Barton E. Schaefer2-10/+20
2013-10-2731912: in closemn(), distinguish closing for >&- from closing for a real ↵Barton E. Schaefer2-5/+11
redirect Fixes knock-on multios bug introduced by workers/20666 way back in 2005.
2013-10-2731909: new cat completionJun T3-0/+48
2013-10-26Merge overlapping ChangeLog entriesBarton E. Schaefer5-2/+22
2013-10-2631906: fix race-condition interaction of $pipestatus with job controlBarton E. Schaefer3-5/+29
printjob() should not reference oldjobtab for job numbers unless it is being called from bin_fg(). printjob() also must not attempt to update pipestats when called from bin_fg(). acquire_pgrp() should not loop infintely if the shell is not interactive. Update the $pipestatus stress test so that it also exercises the oldjobtab repair.