-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
This point release mainly fixes the following: - A bug in history expansion (set -H) where any use of the history comment character caused processing to be aborted as if it were an invalid history expansion. Affected e.g. 'echo ${#v}'. - A bug in command line options processing that caused short-form option equivalents on some built-in commands to be ignored after one use, e.g., the new read -a equivalent of read -A. - Ksh freezing or using excessive memory if HISTSIZE is assigned a pathologically large value. - A bug that caused ksh in the vi editor mode to crash or produce invalid completions if ESC = was used at the beginning of a line.
- Loading branch information
Showing
10 changed files
with
56 additions
and
23 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -20,13 +20,13 @@ ksh 93u+m general copyright notice | |
# Anuradha Weeraman <[email protected]> # | ||
# Lev Kujawski <[email protected]> # | ||
# atheik <[email protected]> # | ||
# K. Eugene Carlson <[email protected]> # | ||
# Ryan Schmidt <[email protected]> # | ||
# Chase <[email protected]> # | ||
# Vincent Mihalkovic <[email protected]> # | ||
# Trey Valenta <[email protected]> # | ||
# Sterling Jensen <[email protected]> # | ||
# Marc Wilson <[email protected]> # | ||
# K. Eugene Carlson <[email protected]> # | ||
# Harald van Dijk <[email protected]> # | ||
# Govind Kamat <[email protected]> # | ||
# Andy Fiddaman <[email protected]> # | ||
|
@@ -46,6 +46,7 @@ ksh 93u+m general copyright notice | |
# Solaris ksh 93u+ patch authors # | ||
# Debian ksh 93u+ patch authors # | ||
# Apple ksh 93u+ patch authors # | ||
# Graphviz maintainers (libast, sfio) # | ||
# # | ||
######################################################################## | ||
|
||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,6 +12,7 @@ | |
* * | ||
* David Korn <[email protected]> * | ||
* Martijn Dekker <[email protected]> * | ||
* Johnothan King <[email protected]> * | ||
* * | ||
***********************************************************************/ | ||
/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* David Korn <[email protected]> * | ||
* Martijn Dekker <[email protected]> * | ||
* Johnothan King <[email protected]> * | ||
* K. Eugene Carlson <[email protected]> * | ||
* * | ||
***********************************************************************/ | ||
/* Original version by Michael T. Veach | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* Glenn Fowler <[email protected]> * | ||
* David Korn <[email protected]> * | ||
* Martijn Dekker <[email protected]> * | ||
* Johnothan King <[email protected]> * | ||
* * | ||
***********************************************************************/ | ||
/* | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -13,6 +13,7 @@ | |
* Glenn Fowler <[email protected]> * | ||
* David Korn <[email protected]> * | ||
* Martijn Dekker <[email protected]> * | ||
* Johnothan King <[email protected]> * | ||
* * | ||
***********************************************************************/ | ||
/* | ||
|