Age | Commit message (Collapse) | Author | Files | Lines | |
---|---|---|---|---|---|
2017-12-22 | 42156: new CHECK_RUNNING_JOBS option demanded by bash groupies | Peter Stephenson | 1 | -2/+15 | |
Also new job options. Also suppress debug error if rows or columns are reported as zero as this is normal without a physical terminal. | |||||
2017-11-24 | 42031 + 42048: Make [[ -o invalidoption ]] a normal(ish) false value, rather ↵ | Daniel Shahaf | 1 | -0/+3 | |
than a syntax error. | |||||
2017-11-13 | github #19: Fix minor typo in INC_APPEND_HISTORY documentation | Chris Bracken | 1 | -1/+1 | |
2017-08-24 | 41590 modified as 41595: make ERR_RETURN more logical. | Peter Stephenson | 1 | -1/+23 | |
It now operates separately at each function depth. To keep ERR_EXIT global, make the noerrexit variable usd bit flags. Extend tests. | |||||
2017-08-08 | Revert "41499 (with one further tweak): POSIX_STRINGS behaviour." | Peter Stephenson | 1 | -21/+9 | |
This reverts commit 2eacbef91913fe967335812900d43cf2edfa54d9. Conflicts: ChangeLog | |||||
2017-08-07 | 41499 (with one further tweak): POSIX_STRINGS behaviour. | Peter Stephenson | 1 | -9/+21 | |
Ignore a terminating delimiter when splitting as separators despite being called separators are terminators. | |||||
2017-07-27 | 41464, 41466: With POSIX_BUILTINS, exec only executes sexternal commands. | Peter Stephenson | 1 | -0/+4 | |
Document the default behaviour and add a test. | |||||
2017-04-05 | users/22653: options.yo: Clarify REMATCH_PCRE semantics. | Daniel Shahaf | 1 | -1/+2 | |
Presently, if the option is set but the module is unavailable, using '=~' sets errflag. | |||||
2017-03-21 | 40875: Update REC_EXACT description, suggested by Martin Krafft | Peter Stephenson | 1 | -2/+3 | |
2017-02-17 | 40568: REMATCH_PCRE is not enabled by default, fix doc. | Øystein Walle | 1 | -1/+1 | |
2017-01-23 | 40391: Add WARN_NESTED_VAR option and functions -W. | Peter Stephenson | 1 | -0/+31 | |
These are companions to WARN_CREATED_GLOBAL, warning when a variable from an enclosing scope is altered. | |||||
2017-01-10 | 40306 with doc tweaks: Change behaviour expanding alias in () function ↵ | Peter Stephenson | 1 | -0/+30 | |
definition. Now an error unless the () is part of the same error as the name. Add ALIAS_FUNC_DEF option to allow it again. | |||||
2016-07-08 | unposted: fix duplicated words | Oliver Kiddle | 1 | -1/+1 | |
2016-06-18 | unposted: when ksharrays is set, braces are required for all parameter ↵ | Barton E. Schaefer | 1 | -1/+2 | |
expansions with colon-modifiers | |||||
2016-01-03 | 37489, tweaked: with POSIX_IDENTIFIERS create math var as scalar | Peter Stephenson | 1 | -0/+6 | |
2015-11-09 | 37085: fix doc: DEBUG_BEFORE_CMD is set by default | Jun-ichi Takimoto | 1 | -5/+5 | |
2015-10-30 | 37022: add GLOB_STAR_SHORT option to abbreviate ** and *** | Peter Stephenson | 1 | -0/+15 | |
2015-09-27 | 36651: WARN_CREATE_GLOBAL += math expressions | Daniel Shahaf | 1 | -1/+2 | |
Without this, '() { (( x=42 )) }' and '() { for (( i=0; … )) }' wouldn't warn about $x and $i, respectively, being created global. | |||||
2015-06-29 | unposted: fix formatting typo in options list. | Peter Stephenson | 1 | -1/+1 | |
2015-06-29 | 35655: APPEND_CREATE option for POSIX copmatible NO_CLOBBER | Peter Stephenson | 1 | -4/+21 | |
2015-06-26 | 35626: update POSIX_CD to note that it is on in ksh and sh emulations | Barton E. Schaefer | 1 | -1/+1 | |
2015-06-24 | various posts: Implement assignment parsing for typeset. | Peter Stephenson | 1 | -1/+7 | |
Typeset assignments now work like raw assignments except for no "+=" and no GLOB_ASSIGN. Documented in typeset builtin doc and mentioned in release notes. Tests to ensure basic sanity. Enabled by default, can be turned off by "disable -r" with typeset family of commands. | |||||
2015-06-11 | 35442: document MULTIBYTE is always on by default when available | Peter Stephenson | 1 | -5/+3 | |
2015-06-02 | unposted: Typo fix | Daniel Shahaf | 1 | -1/+1 | |
2015-05-31 | 35343: Avoid $#name length handling for POSIX_IDENTIFIERS | Peter Stephenson | 1 | -0/+7 | |
2015-05-28 | 35318: POSIX_BUILTINS behaviour for getopts. | Peter Stephenson | 1 | -0/+4 | |
It needs to keep OPTIND, as well as the index within the string pointed to by OPTIND, global in this case. | |||||
2015-05-12 | 35075: improve manual format | Jun-ichi Takimoto | 1 | -1/+1 | |
also fixed a ChangeLog entry for 35034 (2015-05-06) | |||||
2015-05-06 | 35034: improve manual format up to Chapter18 | Jun-ichi Takimoto | 1 | -9/+9 | |
2015-04-13 | 34880: POSIX_TRAPS doc | Han Pingtian | 1 | -1/+1 | |
2015-04-13 | 34875: CSH_JUNKIE_HISTORY doc | Han Pingtian | 1 | -2/+2 | |
2015-04-13 | users/20078: HIST_BEEP doc | Han Pingtian | 1 | -1/+1 | |
2015-04-01 | 34822: correction to GLOB_SUBST doc | Han Pingtian | 1 | -1/+1 | |
2015-03-27 | 34785: fix typo in SHINSTDIN doc | Han Pingtian | 1 | -1/+1 | |
2015-01-15 | 34280: more widespread use of FORCE_FLOAT. | Peter Stephenson | 1 | -3/+4 | |
Add the case of variables read for use in arithmetic expressions. | |||||
2014-11-11 | AUTO_CD behaviour depends on SHIN_STDIN, document | Peter Stephenson | 1 | -0/+4 | |
2014-11-09 | 33643: elaborate documentation of the PRIVILEGED option | Oliver Kiddle | 1 | -4/+16 | |
2014-10-26 | 33531 with additions: retain status of exited background jobs. | Peter Stephenson | 1 | -4/+4 | |
Add linked list of unwaited-for background jobs. Truncate at value of _SC_CHILD_MAX discarding oldest. Remove old lastpid_status mechanism for latest exited process only. Slightly tighten safety of permanently allocated linked lists so that this doesn't compromise signal handling. | |||||
2014-10-03 | Fix some typos in the documentation | Mikael Magnusson | 1 | -2/+2 | |
2014-06-16 | 32781: source behaves like . w.r.t. path search | Jun T | 1 | -1/+1 | |
2014-06-14 | 32779: fix a typo in options.yo | Jun T | 1 | -1/+1 | |
2014-06-13 | 32768 with further modifications: LOCAL_LOOPS option. | Peter Stephenson | 1 | -4/+19 | |
2014-06-06 | 32682 with tweaks: Add INC_APPEND_HISTORY_TIME. | Peter Stephenson | 1 | -6/+24 | |
Revert INC_APPEND_HISTORY behaviour. | |||||
2014-06-01 | 32634: add POSIX_ARGZERO option | Barton E. Schaefer | 1 | -1/+24 | |
2014-04-29 | 32592: add CORRECT_IGNORE_FILE variable | Tomoki Sekiyama | 1 | -0/+3 | |
2014-04-06 | unposted: fix typo | Barton E. Schaefer | 1 | -1/+1 | |
2014-03-14 | unposted: document effect of 32479 on POSIX_TRAPS | Peter Stephenson | 1 | -1/+4 | |
2013-10-16 | Users/18033: Documentation for exit and ERR_EXIT. | Peter Stephenson | 1 | -0/+5 | |
Notes about interaction with asynchronous jobs such as process substitution and multios. | |||||
2013-10-07 | unposted: fix typo | Bart Schaefer | 1 | -1/+1 | |
2013-10-06 | users:18023: Add PIPEFAIL option | Peter Stephenson | 1 | -0/+14 | |
2013-06-13 | 31444: Basic code for enable/disable -p | Peter Stephenson | 1 | -0/+13 | |