1*7c2fbfb3SApril Chin08-10-31 --- Release ksh93t --- 2*7c2fbfb3SApril Chin08-10-31 Variable scoping/initialization bugs that could dump core were fixed. 3*7c2fbfb3SApril Chin08-10-24 The lexer now accepts all RE characters for patterns prefixed 4*7c2fbfb3SApril Chin with a ksh ~(...) option expression. 5*7c2fbfb3SApril Chin08-10-24 For ${var/pat/sub} \0 in sub expands to the text matched by pat. 6*7c2fbfb3SApril Chin08-10-18 A bug in array scoping that could dump core has been fixed. 7*7c2fbfb3SApril Chin08-10-10 read -n and -N fixed to count characters in multibyte locales. 8*7c2fbfb3SApril Chin08-10-10 A bug that mishandled _.array[] type references has been fixed. 9*7c2fbfb3SApril Chin08-10-09 ${.sh.version} now contains a catenation of the following (after 10*7c2fbfb3SApril Chin 'Version') denoting compile time features: 11*7c2fbfb3SApril Chin A SHOPT_AUDIT 12*7c2fbfb3SApril Chin B SHOPT_BASH 13*7c2fbfb3SApril Chin L SHOPT_ACCT 14*7c2fbfb3SApril Chin M SHOPT_MULTIBYTE 15*7c2fbfb3SApril Chin08-10-09 A bug that caused subshell command substitution with redirection 16*7c2fbfb3SApril Chin to hang has been fixed. 17*7c2fbfb3SApril Chin08-10-08 Output errors, other than to stderr, now result in a diagnostic. 18*7c2fbfb3SApril Chin08-10-08 ksh93 now supports types that contain arrays of other types as 19*7c2fbfb3SApril Chin members. Earlier versions core dumped in this case. 20*7c2fbfb3SApril Chin08-10-05 A bug which caused the shell to emit a syntax error for an arithmetic 21*7c2fbfb3SApril Chin statement of the form (( var.name[sub] = value)) has been fixed. 22*7c2fbfb3SApril Chin08-10-01 A bug that caused subshell command substitution to hang has 23*7c2fbfb3SApril Chin been fixed. 24*7c2fbfb3SApril Chin08-09-29 When the -p export option of typeset is used with other options, 25*7c2fbfb3SApril Chin only those variables matching the specified options are displayed. 26*7c2fbfb3SApril Chin08-09-29 When the shell reads the environment and finds variables that are 27*7c2fbfb3SApril Chin not valid shell assignments, it now passes these on to subsequent 28*7c2fbfb3SApril Chin commands rather than deleting them. 29*7c2fbfb3SApril Chin08-09-29 A bug in the display of compound variables containing an indexed 30*7c2fbfb3SApril Chin array of compound variables has been fixed. 31*7c2fbfb3SApril Chin08-09-29 A bug in the display of compound variables containing an associative 32*7c2fbfb3SApril Chin array with a subscript containing a . in the name has been fixed. 33*7c2fbfb3SApril Chin08-09-26 A core dump in the subshell environment restore has been fixed. 34*7c2fbfb3SApril Chin08-09-24 $(...) has been fixed to properly set the exit status in $?. 35*7c2fbfb3SApril Chin08-09-23 $(<...) with IFS=$'\n\n' has been fixed to retain all but the last 36*7c2fbfb3SApril Chin of multiple trailing newlines. 37*7c2fbfb3SApril Chin08-09-23 The -p option to typeset when used with other attributes, restricts 38*7c2fbfb3SApril Chin the output to variables with the specified attributes. 39*7c2fbfb3SApril Chin08-09-22 A bug that sometimes lost the exit status of a job has been fixed. 40*7c2fbfb3SApril Chin08-09-21 A bug that retained trailing command substitution newlines in 41*7c2fbfb3SApril Chin cases where the command caused the shell to fork has been fixed. 42*7c2fbfb3SApril Chin08-09-19 type, whence -v, and command -v were fixed to comply with POSIX 43*7c2fbfb3SApril Chin by writing 'not found' diagnostics to the standard error. 44*7c2fbfb3SApril Chin08-09-18 test and [...] were fixed to comply with POSIX in the case 45*7c2fbfb3SApril Chin of test '(' binop ')' where binop is a valid binary test operator. 46*7c2fbfb3SApril Chin08-09-16 If a method discipline named create is specified when defining a 47*7c2fbfb3SApril Chin type, this function will be called when an instance is created. 48*7c2fbfb3SApril Chin08-09-15 The variable _ is now set as a reference to the compound variable 49*7c2fbfb3SApril Chin when defining a compound variable or a type. 50*7c2fbfb3SApril Chin08-09-10 The shell now prints an error message when the type name specified 51*7c2fbfb3SApril Chin for an indexed array subscript is not an enumeration type. 52*7c2fbfb3SApril Chin08-09-10 A bug in which a subshell that spawned a background process could 53*7c2fbfb3SApril Chin loose output that was produced after the foreground completed 54*7c2fbfb3SApril Chin has been fixed. 55*7c2fbfb3SApril Chin08-09-10 A timing bug on some systems that could cause coprocesses started by a 56*7c2fbfb3SApril Chin subshell to not clean up and prevent other coprocesses has been fixed. 57*7c2fbfb3SApril Chin08-09-09 The typeset -m option is now able to rename array elements from 58*7c2fbfb3SApril Chin the same array. 59*7c2fbfb3SApril Chin08-09-09 The exit status of 2 from the DEBUG trap causes the next command 60*7c2fbfb3SApril Chin to be skipped. An exit value of 255 from a DEBUG trap called from 61*7c2fbfb3SApril Chin a function causes the function to return. 62*7c2fbfb3SApril Chin08-09-08 A bug in which a coprocess created in a subshell that did not 63*7c2fbfb3SApril Chin complete when the subshell terminated could prevent a coprocess 64*7c2fbfb3SApril Chin from being created in the parent shell has been fixed. 65*7c2fbfb3SApril Chin08-09-05 An assignment of the form name1=name2 where name1 and name2 66*7c2fbfb3SApril Chin are both compound variables causes name1 to get a copy of name2. 67*7c2fbfb3SApril Chin name1+=name2 causes name2 sub-variables to be appended to name1. 68*7c2fbfb3SApril Chin08-09-05 A bug in which unsetting a compound variable did not unset all 69*7c2fbfb3SApril Chin the sub-variables has been fixed. 70*7c2fbfb3SApril Chin08-09-01 A bug in the subshell cleanup code that could cause SIGSEGV has 71*7c2fbfb3SApril Chin been fixed. 72*7c2fbfb3SApril Chin06-08-26 The SHLVL variable which is an environment variable used by bash 73*7c2fbfb3SApril Chin and zsh that gets incremented when the shell starts. 74*7c2fbfb3SApril Chin08-08-25 For an indexed array, a negative subscript now refers to offsets 75*7c2fbfb3SApril Chin from the end so that -1 refers to the last element. 76*7c2fbfb3SApril Chin08-08-24 An alignment error for shorts on 64 bit architectures has been fixed. 77*7c2fbfb3SApril Chin08-08-22 If oldvar is a compound variable, typeset -C newvar=oldvar creates 78*7c2fbfb3SApril Chin newvar as a copy of oldvar. 79*7c2fbfb3SApril Chin08-08-19 The ALRM signal no longer cause the sleep builtin to terminate. 80*7c2fbfb3SApril Chin08-08-13 When used in an arithmetic expression, the .sh.version variable 81*7c2fbfb3SApril Chin now produces a number that will be increasing for each release. 82*7c2fbfb3SApril Chin08-08-11 A bug in which type instantiation with a compound assignment in 83*7c2fbfb3SApril Chin a dot script in which the type is defined has been fixed. 84*7c2fbfb3SApril Chin08-08-07 The -m option has been added to typeset to move or rename a 85*7c2fbfb3SApril Chin variable. Not documented yet. 86*7c2fbfb3SApril Chin08-08-06 A bug in read when used in a loop when a prompt was specified 87*7c2fbfb3SApril Chin when reading from a terminal has been fixed. 88*7c2fbfb3SApril Chin08-08-01 A bug with the pipefail option in which a nested pipeline could 89*7c2fbfb3SApril Chin cause an asynchronous command to block has been fixed. 90*7c2fbfb3SApril Chin08-08-01 A for loop optimizer bug that treats .sh.lineno as an invariant 91*7c2fbfb3SApril Chin has been fixed. 92*7c2fbfb3SApril Chin08-07-30 A bug in which expanding compound variable that had a get discipline 93*7c2fbfb3SApril Chin from with a here document could cause a syntax error has been fixed. 94*7c2fbfb3SApril Chin08-07-18 A bug in which a nameref caused a local variable to be created 95*7c2fbfb3SApril Chin rather than binding to an existing variable in the global scope 96*7c2fbfb3SApril Chin has been fixed. 97*7c2fbfb3SApril Chin08-07-17 A bug which occurred when a nameref was created from within a 98*7c2fbfb3SApril Chin function that was part of a pipeline has been fixed. 99*7c2fbfb3SApril Chin08-07-14 The compile option SHOPT_STATS was added. With this option the 100*7c2fbfb3SApril Chin compound variable .sh.stats keeps usage statistics that could help 101*7c2fbfb3SApril Chin with performance tuning. 102*7c2fbfb3SApril Chin08-07-10 The output of set now always uses a single line for each variable. 103*7c2fbfb3SApril Chin For array variables, the complete set of values is now displayed. 104*7c2fbfb3SApril Chin08-07-09 The typeset -C option can be used with arrays to indicate that 105*7c2fbfb3SApril Chin each element should default to a compound variable. 106*7c2fbfb3SApril Chin08-07-08 The %B format now outputs compound variables and arrays. The 107*7c2fbfb3SApril Chin alternate flag # can be used to cause output into a single line. 108*7c2fbfb3SApril Chin08-07-03 When the window change signal, WINCH, is received, the current 109*7c2fbfb3SApril Chin edit line is redrawn in place. 110*7c2fbfb3SApril Chin08-07-01 A bug in the handling of shared variables when inside an embedded 111*7c2fbfb3SApril Chin type has been fixed. 112*7c2fbfb3SApril Chin08-06-29 A bug in multiline edit mode which occurred when the prompt length 113*7c2fbfb3SApril Chin was three characters or less has been fixed. 114*7c2fbfb3SApril Chin08-06-23 A bug in which the SIGCLD was not be triggered when background 115*7c2fbfb3SApril Chin jobs completed has been fixed. 116*7c2fbfb3SApril Chin08-06-23 KSH_VERSION added as a name reference to .sh.version. 117*7c2fbfb3SApril Chin08-06-20 type now outputs 'special builtin' for special builtins. 118*7c2fbfb3SApril Chin08-06-19 A couple of bugs in multi-dimensional arrays have been fxied. 119*7c2fbfb3SApril Chin08-06-19 A bug in which a syntax error in a dot script could generated 120*7c2fbfb3SApril Chin a syntax error in the next subsequent command has been fixed. 121*7c2fbfb3SApril Chin08-06-17 Reduced the maximum function call depth to 2048 to avoid exceptions 122*7c2fbfb3SApril Chin on some architectures. 123*7c2fbfb3SApril Chin08-06-16 A bug in which printf "%B" could generate an exception when the 124*7c2fbfb3SApril Chin specified variable was not set has been fixed. 125*7c2fbfb3SApril Chin08-06-16 When typeset -p is followed by variable names, it now displays 126*7c2fbfb3SApril Chin the attributes names and values for the specific names. 127*7c2fbfb3SApril Chin08-06-14 A bug that could effect the drawing of the screen from multiline 128*7c2fbfb3SApril Chin emacs or gmacs mode when walking up the history file has been fixed. 129*7c2fbfb3SApril Chin08-06-13 A bug in which a compound variable defined in a subshell could 130*7c2fbfb3SApril Chin have side effects into the parent shell has been fixed. 131*7c2fbfb3SApril Chin08-06-13 A number of bugs related to using .sh.level to set the stack from 132*7c2fbfb3SApril Chin for DEBUG traps have been fixed. 133*7c2fbfb3SApril Chin08-06-13 The .sh.lineno variable has been added. When .sh.level is changed 134*7c2fbfb3SApril Chin inside a DEBUG trap, the .sh.lineno contains the calling line number 135*7c2fbfb3SApril Chin for the specified stack frame. 136*7c2fbfb3SApril Chin08-06-13 The .sh.level variable has been documented and now works. 137*7c2fbfb3SApril Chin08-06-11 The -C option has been added to read for reading compound command 138*7c2fbfb3SApril Chin definitions from a file. 139*7c2fbfb3SApril Chin08-06-11 The . command is now permitted inside a compound command definition. 140*7c2fbfb3SApril Chin The dot script can contain declaration commands and dot commands. 141*7c2fbfb3SApril Chin08-06-09 Add -C option to typeset so that typeset -C foo, is equivalent 142*7c2fbfb3SApril Chin to foo=(). 143*7c2fbfb3SApril Chin08-06-09 Added -n warning message for typeset option orderings that are valid 144*7c2fbfb3SApril Chin with ksh88 but not valid with ksh93, for example Lx5. 145*7c2fbfb3SApril Chin08-06-09 A bug in which the return value for an assignment command containing 146*7c2fbfb3SApril Chin a command substitution with that failed was zero when the assignment 147*7c2fbfb3SApril Chin contained redirections has been fixed. 148*7c2fbfb3SApril Chin08-06-09 A bug in the quoting of $ inside a ERE pattern ~(E)(pattern) 149*7c2fbfb3SApril Chin has been fixed. 150*7c2fbfb3SApril Chin08-06-06 A bug when processing `` command substitution with the character 151*7c2fbfb3SApril Chin sequence \$' has been fixed. 152*7c2fbfb3SApril Chin08-06-02 When defining a type, the typeset -r attribute causes this field 153*7c2fbfb3SApril Chin to be required to be specified for each instance of the type and 154*7c2fbfb3SApril Chin does not allow a default value. 155*7c2fbfb3SApril Chin08-06-02 Several bugs in which compound variables were modified by 156*7c2fbfb3SApril Chin subshells have been fixed. 157*7c2fbfb3SApril Chin08-05-22 The ceil function has been added to the math functions. 158*7c2fbfb3SApril Chin08-05-21 A bug in which a name reference defined in a function and passed 159*7c2fbfb3SApril Chin as an argument to another function could cause an incorrect binding. 160*7c2fbfb3SApril Chin08-05-21 A bug in freeing compound variables that are local to functions 161*7c2fbfb3SApril Chin has been fixed. 162*7c2fbfb3SApril Chin08-05-19 The array expansions ${array[sub1..sub2]} and ${!array[sub1..sub2]} 163*7c2fbfb3SApril Chin to expand to the value (or subscripts) for array between sub1 and 164*7c2fbfb3SApril Chin sub2 inclusive. For associative arrays, the range is based on 165*7c2fbfb3SApril Chin location in the POSIX locale. The .. must be explicit and cannot 166*7c2fbfb3SApril Chin result from an expansion. 167*7c2fbfb3SApril Chin08-05-15 The trap on SIGCLD is no longer triggered by the completion of 168*7c2fbfb3SApril Chin the foreground job as with ksh88. 169*7c2fbfb3SApril Chin08-05-14 A bug in the implementation of the editing feature added on 170*7c2fbfb3SApril Chin 07-09-19 in emacs mode has been fixed. 171*7c2fbfb3SApril Chin08-05-12 A bug in processing the test built-in with parenthesis has been 172*7c2fbfb3SApril Chin fixed. 173*7c2fbfb3SApril Chin08-05-12 The unset built-in now returns non-zero when deleting an array 174*7c2fbfb3SApril Chin subscript that is not set. 175*7c2fbfb3SApril Chin08-05-08 Changing the value of HISTFILE or HISTSIZE will cause the old 176*7c2fbfb3SApril Chin history file to be close and reopened with the new name or size. 177*7c2fbfb3SApril Chin08-05-08 When FPATH is changed functions that were found via a path search 178*7c2fbfb3SApril Chin will be searched for again. 179*7c2fbfb3SApril Chin08-05-08 A parser bug in which reserved words and labels were recognized 180*7c2fbfb3SApril Chin inside compound indexed array assignment after a new-line has 181*7c2fbfb3SApril Chin been fixed. 182*7c2fbfb3SApril Chin08-05-07 A bug in getopts when handling numerical option arguments has 183*7c2fbfb3SApril Chin been fixed. 184*7c2fbfb3SApril Chin08-05-07 The typeset -S option was added for variables outside type 185*7c2fbfb3SApril Chin definitions to provide a storage class similar to C static 186*7c2fbfb3SApril Chin inside a function defined with function name. When outside 187*7c2fbfb3SApril Chin type definitions and outside a function, the -S option cause 188*7c2fbfb3SApril Chin the specified variable so be unset before the assignment and 189*7c2fbfb3SApril Chin before the remaining attributes are supplied. 190*7c2fbfb3SApril Chin08-05-07 A bug that affected the cursor movement in multiline mode when 191*7c2fbfb3SApril Chin a character was deleted from near the beginning of the any 192*7c2fbfb3SApril Chin line other than the first. 193*7c2fbfb3SApril Chin08-05-01 In multiline edit mode, the refresh operation will now clear 194*7c2fbfb3SApril Chin the remaining portion of the last line. 195*7c2fbfb3SApril Chin08-05-01 A bug in computing prompt widths for the edit modes for prompts 196*7c2fbfb3SApril Chin with multibyte characters has been fixed. 197*7c2fbfb3SApril Chin08-05-01 A bug in the multiline edit mode which could cause the current 198*7c2fbfb3SApril Chin line to be displayed incorrectly when moving backwards from third 199*7c2fbfb3SApril Chin or higher line to the previous line has been fixed. 200*7c2fbfb3SApril Chin08-05-01 A bug in which options set in functions declared with the function 201*7c2fbfb3SApril Chin name syntax were carried across into functions invoked by these 202*7c2fbfb3SApril Chin functions has been fixed. 203*7c2fbfb3SApril Chin08-04-30 A bug which could cause a coprocess to hang when the read end 204*7c2fbfb3SApril Chin is a builtin command has been fixed. 205*7c2fbfb3SApril Chin08-04-30 The emacs and vi editors have been modified to handle window 206*7c2fbfb3SApril Chin change commands as soon as they happen rather than waiting for 207*7c2fbfb3SApril Chin the next command. 208*7c2fbfb3SApril Chin08-04-28 A bug in which ${!x} did not expand to x when x was unset has been 209*7c2fbfb3SApril Chin fixed. 210*7c2fbfb3SApril Chin08-04-27 A bug in which the assignment x=(typeset -a foo=([0]=abc)) created 211*7c2fbfb3SApril Chin x.foo as an associative array has been fixed. 212*7c2fbfb3SApril Chin08-04-25 A bug in which $# did not report correctly when there were more 213*7c2fbfb3SApril Chin than 32K positional parameters has been fixed. 214*7c2fbfb3SApril Chin08-04-04 Choose the name _ as the sub-variable that holds type or instance 215*7c2fbfb3SApril Chin specific data used by discipline functions. 216*7c2fbfb3SApril Chin08-03-27 A bug in which the terminal group was not given back to the parent 217*7c2fbfb3SApril Chin shell when the last part of a pipeline was handled by the parent shell 218*7c2fbfb3SApril Chin and the other parts of the pipeline complete has been fixed. 219*7c2fbfb3SApril Chin The symptom was that the pipeline became uninterruptable. 220*7c2fbfb3SApril Chin08-03-25 A bug in restricted mode introduced in ksh93s that caused scripts 221*7c2fbfb3SApril Chin that did not use #! to executed in restricted mode has been fixed. 222*7c2fbfb3SApril Chin08-03-25 A bug in which the pipefail option did not work for a pipeline 223*7c2fbfb3SApril Chin within a pipeline has been fixed. 224*7c2fbfb3SApril Chin08-03-24 A bug in which OPTIND was not set correctly in subshells has 225*7c2fbfb3SApril Chin been fixed. 226*7c2fbfb3SApril Chin08-03-24 A bug which could cause a memory exception when a compound variable 227*7c2fbfb3SApril Chin containing an indexed array with only element 0 defined was expanded. 228*7c2fbfb3SApril Chin08-03-20 A bug in which ${!var[sub].*} was treated as an error has been fixed. 229*7c2fbfb3SApril Chin08-03-20 Associative array assignments of the form ([name]=value ...) 230*7c2fbfb3SApril Chin now allow ; as well as space tab and new line to separate elements. 231*7c2fbfb3SApril Chin08-03-18 A buffering problem in which standard error was sometimes 232*7c2fbfb3SApril Chin not flushed before sleep has been fixed. 233*7c2fbfb3SApril Chin08-03-17 A bug in which a signal sent to $$ while in a subshell would be 234*7c2fbfb3SApril Chin sent to the subshell rather than the parent has been fixed. 235*7c2fbfb3SApril Chin08-03-17 --default option added to set(1) to handle set +o POSIX semantics. 236*7c2fbfb3SApril Chin set --state added as a long name alias for set +o. 237*7c2fbfb3SApril Chin08-03-14 A bug in which using monitor mode from within a script could 238*7c2fbfb3SApril Chin cause the terminal group to change has been fixed. 239*7c2fbfb3SApril Chin08-03-10 The new ${...} command substitution will treat the trailing } 240*7c2fbfb3SApril Chin as a reserved word even if it is not at the beginning of a command, 241*7c2fbfb3SApril Chin for example, ${ date }. 242*7c2fbfb3SApril Chin08-03-10 If the name of the ENV begins with /./ or ././ then the 243*7c2fbfb3SApril Chin /etc/ksh.kshrc file will not be executed on systems that support 244*7c2fbfb3SApril Chin this interactive initialization file. 245*7c2fbfb3SApril Chin08-03-07 A bug in which ksh -i did not run the ENV file has been fixed. 246*7c2fbfb3SApril Chin08-03-07 A bug in which ulimit did not always produce the same output as 247*7c2fbfb3SApril Chin ulimit -fS has been fixed. 248*7c2fbfb3SApril Chin08-03-04 A bug in multiline mode in emacs and vi mode which could cause the 249*7c2fbfb3SApril Chin cursor to be on the wrong line when interrupt was hit has been fixed. 250*7c2fbfb3SApril Chin08-03-03 The change made in ksh93s+ on 07-06-18 in which braces became 251*7c2fbfb3SApril Chin optional for ${a[i]} inside [[...]] was restored in the case 252*7c2fbfb3SApril Chin where the argument can be a pattern. 253*7c2fbfb3SApril Chin08-03-03 A bug in which creating a name reference to an associative array 254*7c2fbfb3SApril Chin instance would fail when the subscript contained characters [ or 255*7c2fbfb3SApril Chin ] has been fixed. 256*7c2fbfb3SApril Chin08-02-29 The redirection operator >; has been added which for non-special 257*7c2fbfb3SApril Chin files, generates the output in a temporary file and writes the 258*7c2fbfb3SApril Chin specified file only of the command has completed successfully. 259*7c2fbfb3SApril Chin08-02-15 A bug in ${var/pattern/string} for patterns of the form ?(*) and +(*) 260*7c2fbfb3SApril Chin has bee fixed. 261*7c2fbfb3SApril Chin08-02-07 A bug in which test \( ! -e \) produced an error has been fixed. 262*7c2fbfb3SApril Chin08-02-14 The typeset -a option can now optionally be followed by the name 263*7c2fbfb3SApril Chin of an enumeration type which allows subscripts to be enumerations. 264*7c2fbfb3SApril Chin08-02-14 The enum builtin which creates enumeration types has been added. 265*7c2fbfb3SApril Chin08-02-12 The backoff logic when there are no more processes has been fixed. 266*7c2fbfb3SApril Chin08-02-07 The -X option has been added to typeset. The -X option creates 267*7c2fbfb3SApril Chin a double precision number that gets displayed using the C99 %a 268*7c2fbfb3SApril Chin format. It can be used along with -l for long double. 269*7c2fbfb3SApril Chin08-01-31 The -T option to typeset has been added for creating typed 270*7c2fbfb3SApril Chin variables. Also the -h and -S options have been added to 271*7c2fbfb3SApril Chin typeset that are only applicable when defining a type. 272*7c2fbfb3SApril Chin08-01-31 The prefix expansion operator @ has been added. ${@name} 273*7c2fbfb3SApril Chin expands to the type of name or yields the attributes. 274*7c2fbfb3SApril Chin07-11-15 A bug in the macro expander for multibyte characters in which 275*7c2fbfb3SApril Chin part of the character contains a file pattern byte has been fixed. 276*7c2fbfb3SApril Chin07-10-03 A bug in which : was not allowed as part of an alias name has been 277*7c2fbfb3SApril Chin fixed. 278*7c2fbfb3SApril Chin07-09-26 A bug in which appending a compound variable to a compound variable 279*7c2fbfb3SApril Chin or to an index array didn't work has been fixed. 280*7c2fbfb3SApril Chin07-09-19 In both emacs and vi edit mode, the escape sequence \E[A (usually 281*7c2fbfb3SApril Chin cursor up, when the cursor is at the end of the line will fetch 282*7c2fbfb3SApril Chin the most recent line starting with the current line. 283*7c2fbfb3SApril Chin07-09-18 The value of ${!var} was correct when var was a reference to an 284*7c2fbfb3SApril Chin array instance. 285*7c2fbfb3SApril Chin07-09-18 The value of ${!var[sub]} was not expanding to var[sub] and this 286*7c2fbfb3SApril Chin was fixed. It also fixed ${name} where name is a name reference 287*7c2fbfb3SApril Chin to var[sub]. 288*7c2fbfb3SApril Chin07-09-18 It is now legal to create a name reference without an initialization. 289*7c2fbfb3SApril Chin It will be bound to a variable on the first assignment. 290*7c2fbfb3SApril Chin07-08-30 A discipline function can be invoked as ${x.foo} and is equivalent 291*7c2fbfb3SApril Chin to ${ x.foo;} and can be invoked as x.foo inside ((...)). 292*7c2fbfb3SApril Chin07-07-09 A bug in which typeset -a did not list indexed arrays has been 293*7c2fbfb3SApril Chin fixed. 294*7c2fbfb3SApril Chin07-07-03 The command substitution ${ command;} has been added. It behaves 295*7c2fbfb3SApril Chin like $(command) except that command is executed in the current 296*7c2fbfb3SApril Chin shell environment. The ${ must be followed by a blank or an 297*7c2fbfb3SApril Chin operator. 298*7c2fbfb3SApril Chin 299*7c2fbfb3SApril Chin08-04-17 --- Release ksh93s+ --- 300*7c2fbfb3SApril Chin08-04-17 A bug in which umask was not being restored correctly after a 301*7c2fbfb3SApril Chin subshell has been fixed. 302*7c2fbfb3SApril Chin08-04-15 A bug in which sending a STOP signal to a job control shell started 303*7c2fbfb3SApril Chin from within a shell function caused cause the invoking shell to 304*7c2fbfb3SApril Chin terminate has been fixed. 305*7c2fbfb3SApril Chin08-04-11 A bug which caused $(exec > /dev/null) to go into an infinite loop 306*7c2fbfb3SApril Chin has been fixed. 307*7c2fbfb3SApril Chin08-03-27 A bug in which typeset -LZ was being treated as -RZ has been fixed. 308*7c2fbfb3SApril Chin08-03-06 A bug with ksh -P on systems that support the the profile shell, 309*7c2fbfb3SApril Chin in which it would exit after running a non-builtin has been fixed. 310*7c2fbfb3SApril Chin08-01-31 A bug in which command substitution inside ((...)) could cause 311*7c2fbfb3SApril Chin syntax errors or lead to core dumps has been fixed. 312*7c2fbfb3SApril Chin08-01-17 A bug in which discipline functions could be deleted when invoked 313*7c2fbfb3SApril Chin from a subshell has been fixed. 314*7c2fbfb3SApril Chin08-01-17 A bug in which a command substitution consisting only of 315*7c2fbfb3SApril Chin assignments was treated as a noop has been fixed. 316*7c2fbfb3SApril Chin08-01-17 A bug in which discipline functions invoked from withing a 317*7c2fbfb3SApril Chin compound assignment could fail has been fixed. 318*7c2fbfb3SApril Chin08-01-16 Incomplete arithmetic assignments, for example ((x += )), now 319*7c2fbfb3SApril Chin generate an error message. 320*7c2fbfb3SApril Chin08-01-16 A bug in which a set discipline defined for a variable before 321*7c2fbfb3SApril Chin an array assignment could cause a core dump has been fixed. 322*7c2fbfb3SApril Chin08-01-03 A bug in on some systems in which exit status 0 is incorrectly 323*7c2fbfb3SApril Chin returned by a process that catches the SIGCONT signal is stopped 324*7c2fbfb3SApril Chin and then continued. 325*7c2fbfb3SApril Chin07-12-13 A race condition in which a program that has been stopped and then 326*7c2fbfb3SApril Chin continued could loose the exit status has been fixed. 327*7c2fbfb3SApril Chin07-12-12 Code to check for file system out of space write errors for all 328*7c2fbfb3SApril Chin writes has been added. 329*7c2fbfb3SApril Chin07-12-11 A bug in the macro expander for multibyte characters in which 330*7c2fbfb3SApril Chin part of the character contains a file pattern byte has been fixed. 331*7c2fbfb3SApril Chin07-12-06 A bug in the emacs edit mode when multiline was set that output 332*7c2fbfb3SApril Chin a backspace before the newline to the screen has been fixed. 333*7c2fbfb3SApril Chin07-12-04 A bug in which using <n>TAB after a variable name listing expansion 334*7c2fbfb3SApril Chin in the edit modes would cause the $ to disappear has been fixed. 335*7c2fbfb3SApril Chin07-11-28 A bug in which setting IFS to readonly could cause a subsequent 336*7c2fbfb3SApril Chin command substitution to fail has been fixed. 337*7c2fbfb3SApril Chin07-11-27 A work around for a gcc 4.* C99 "feature" that could cause a job 338*7c2fbfb3SApril Chin control shell to go into an infinite loop by adding the volatile 339*7c2fbfb3SApril Chin attribute to some auto vars in functions that call setjmp(). 340*7c2fbfb3SApril Chin07-11-27 A bug in which the shell could read ahead on a pipe causing the 341*7c2fbfb3SApril Chin standard input to be incorrectly positioned has been fixed. 342*7c2fbfb3SApril Chin07-11-27 A bug in which compound variable UTF-8 multibyte values were not 343*7c2fbfb3SApril Chin expanded or traced properly has been fixed. 344*7c2fbfb3SApril Chin07-11-21 A bug where an unbalanced '[' in a command argument was not treated 345*7c2fbfb3SApril Chin properly has been fixed. 346*7c2fbfb3SApril Chin07-11-15 A bug in which compatibility mode (no long option names) getopts(1) 347*7c2fbfb3SApril Chin incorrectly set the value of OPTARG for flag options has been fixed. 348*7c2fbfb3SApril Chin07-11-15 A bug in which "hash -- name" treated "--" as an invalid name operand 349*7c2fbfb3SApril Chin has been fixed. 350*7c2fbfb3SApril Chin07-11-15 typeset now handles "-t -- [-r] [--]" for s5r4 hash(1) compatibility. 351*7c2fbfb3SApril Chin07-11-15 A bug in which the umask builtin mis-handled symbolic mode operands 352*7c2fbfb3SApril Chin has been fixed. 353*7c2fbfb3SApril Chin07-11-15 Bugs in which shell arithmetic and the printf builtin mis-handled the 354*7c2fbfb3SApril Chin signs of { -NaN -Inf -0.0 } have been fixed. 355*7c2fbfb3SApril Chin07-11-15 The full { SIGRTMIN SIGRTMIN+1 ... SIGRTMAX-1 SIGRTMAX } range 356*7c2fbfb3SApril Chin of signals, determined at runtime, are now supported. 357*7c2fbfb3SApril Chin07-11-15 A bug in which creating an index array with only subscript 0 created 358*7c2fbfb3SApril Chin only a simple variable has been fixed. 359*7c2fbfb3SApril Chin07-11-14 A bug in which appending to an indexed array using the form 360*7c2fbfb3SApril Chin name+=([sub]=value) could cause the array to become an associative 361*7c2fbfb3SApril Chin array has been fixed. 362*7c2fbfb3SApril Chin07-11-14 A bug in which typeset without arguments could coredump if a 363*7c2fbfb3SApril Chin variable is declared as in indexed array and has no elements has 364*7c2fbfb3SApril Chin been fixed. 365*7c2fbfb3SApril Chin07-11-14 A bug in which creating a local SECONDS variable with typeset in 366*7c2fbfb3SApril Chin a function could corrupt memory has been fixed. 367*7c2fbfb3SApril Chin07-11-14 A bug which could cause a core dump when a script invoked by name 368*7c2fbfb3SApril Chin from a function used compound variables has been fixed. 369*7c2fbfb3SApril Chin07-11-05 A bug in which printf %d "'AB" did not diagnose unconverted characters 370*7c2fbfb3SApril Chin has been fixed. 371*7c2fbfb3SApril Chin07-11-05 printf %g "'A" support added for all floating point formats. 372*7c2fbfb3SApril Chin07-11-01 A bug in which typeset -f fun did not display the function definition 373*7c2fbfb3SApril Chin when invoked in a subshell has been fixed. 374*7c2fbfb3SApril Chin07-10-29 The sleep builtin was fixed so that all floating point constants 375*7c2fbfb3SApril Chin are valid operands. 376*7c2fbfb3SApril Chin07-10-10 A bug in which the locale was not being restored after 377*7c2fbfb3SApril Chin LANG=value command has been fixed. 378*7c2fbfb3SApril Chin07-09-20 A bug in which a nameref to a compound variable that was local 379*7c2fbfb3SApril Chin to the calling function would not expand correctly when displaying 380*7c2fbfb3SApril Chin is value has been fixed. 381*7c2fbfb3SApril Chin07-09-19 A bug which cause cause a core dump if .sh.edchar returned 382*7c2fbfb3SApril Chin 80 characters or more from a keyboard trap has been fixed. 383*7c2fbfb3SApril Chin07-09-14 A bug in which could cause a core dump when more than 8 file 384*7c2fbfb3SApril Chin descriptors were in use has been fixed. 385*7c2fbfb3SApril Chin07-09-10 A bug in which creating a name reference to an instance of 386*7c2fbfb3SApril Chin an array when the array name is itself a reference has been fixed. 387*7c2fbfb3SApril Chin07-09-10 The file completion code has been modified so that after an = in 388*7c2fbfb3SApril Chin any word, each : will be considered a path delimiter. 389*7c2fbfb3SApril Chin07-09-06 A bug in which subprocess cleanup could corrupt the malloc() heap 390*7c2fbfb3SApril Chin has been fixed. 391*7c2fbfb3SApril Chin07-08-26 A bug in which a name reference to an associative array instance 392*7c2fbfb3SApril Chin could cause the subscript to be evaluated as an arithmetic expression 393*7c2fbfb3SApril Chin has been fixed. 394*7c2fbfb3SApril Chin07-08-22 A bug in which the value of an array instance was of a compound 395*7c2fbfb3SApril Chin variable was not expanded correctly has been fixed. 396*7c2fbfb3SApril Chin07-08-14 A bug which could cause a core dump when a compound assignment was 397*7c2fbfb3SApril Chin made to a compound variable element with a typeset -a attribute 398*7c2fbfb3SApril Chin has been fixed. 399*7c2fbfb3SApril Chin07-08-08 A bug in which a trap ignored in a subshell caused it to be 400*7c2fbfb3SApril Chin ignored by the parent has been fixed. 401*7c2fbfb3SApril Chin07-08-07 A bug in which the set command would generated erroneous output 402*7c2fbfb3SApril Chin for a variable with the -RZ attribute if the variable name had been 403*7c2fbfb3SApril Chin passed to a function has been fixed. 404*7c2fbfb3SApril Chin07-08-02 A bug in which read x[1] could core dump has been fixed. 405*7c2fbfb3SApril Chin07-08-02 A second bug in which after read x[sub] into an associative array 406*7c2fbfb3SApril Chin of an element that hasn't been assigned could lead to a core dump 407*7c2fbfb3SApril Chin has been fixed. 408*7c2fbfb3SApril Chin07-07-31 A bug in which a pipeline that completed correctly could have 409*7c2fbfb3SApril Chin an exit status of 127 when pipefail was enabled has been fixed. 410*7c2fbfb3SApril Chin07-07-09 The SHOPT_AUDIT compile option has been added for keyboard logging. 411*7c2fbfb3SApril Chin07-06-25 In vi insert mode, ksh no longer emits a backspace character 412*7c2fbfb3SApril Chin before the carriage return when the newline is entered. 413*7c2fbfb3SApril Chin07-06-25 A bug in which pipefail would cause a command to return 0 414*7c2fbfb3SApril Chin when the pipeline was the last command and the failure happened 415*7c2fbfb3SApril Chin on a component other than the last has been fixed. 416*7c2fbfb3SApril Chin07-06-25 A bug in the expansion of ${var/pattern/rep} when pattern or rep 417*7c2fbfb3SApril Chin contained a left parenthesis in single quotes has been fixed. 418*7c2fbfb3SApril Chin07-06-18 The braces for a subscripted variable with ${var[sub]} are now 419*7c2fbfb3SApril Chin optional when inside [[...]], ((...)) or as a subscript. 420*7c2fbfb3SApril Chin07-05-28 A bug in brace expansion in which single and double quotes did 421*7c2fbfb3SApril Chin not treat the comma as a literal character has been fixed. 422*7c2fbfb3SApril Chin07-05-24 The -p option of whence now disables -v. 423*7c2fbfb3SApril Chin07-05-23 Several bug fixes in compound variables and arrays of arrays 424*7c2fbfb3SApril Chin have been made. 425*7c2fbfb3SApril Chin07-05-15 A bug in which the %B format of printf was affected by the 426*7c2fbfb3SApril Chin locale has been fixed. 427*7c2fbfb3SApril Chin07-05-14 A bug in which \ was not removed in the replacement pattern with 428*7c2fbfb3SApril Chin ${var/pattern/rep} when it was not followed by \ or a digit has 429*7c2fbfb3SApril Chin been fixed. 430*7c2fbfb3SApril Chin07-05-10 A bug in which ksh -R file core dumped if no script was specified 431*7c2fbfb3SApril Chin has been fixed. it not displays an error message. 432*7c2fbfb3SApril Chin07-05-07 Added additional Solaris signals to signal table. 433*7c2fbfb3SApril Chin07-04-30 A bug in which a pipeline with command substitution inside a 434*7c2fbfb3SApril Chin function could cause a pipeline that invokes this function to 435*7c2fbfb3SApril Chin hang when the pipefail option is on has been fixed. 436*7c2fbfb3SApril Chin07-04-30 Added -q to whence. 437da2e3ebdSchin07-04-18 A small memory leak with each redirection of a non-builtin has 438da2e3ebdSchin been fixed. 439da2e3ebdSchin07-03-08 A bug in which set +o output command line options has been fixed. 440da2e3ebdSchin07-03-08 A bug in which an error in read (for example, an invalid variable 441da2e3ebdSchin name), could leave the terminal in raw mode has been fixed. 442da2e3ebdSchin07-03-06 A bug in which read could core dump when specified with an array 443da2e3ebdSchin variable with a subscript that is an arithmetic expression has 444da2e3ebdSchin been fixed. 445da2e3ebdSchin07-03-06 Several serious bugs with the restricted shell were reported and 446da2e3ebdSchin fixed. 447da2e3ebdSchin07-03-02 If a job is stopped, and subsequently restarted with a CONT 448da2e3ebdSchin signal and exits normally, ksh93 was incorrectly exiting with 449da2e3ebdSchin the exit status of the stop signal number. 450da2e3ebdSchin07-02-26 M-^L added to emacs mode to clear the screen. 451da2e3ebdSchin07-02-26 A bug in which setting a variable readonly in a subshell would 452da2e3ebdSchin cause an unset error when the subshell completed has been fixed. 453da2e3ebdSchin07-02-19 The format with printf uses the new = flag to center the output. 454da2e3ebdSchin07-02-19 A bug in which ksh93 did not allow multibyte characters in 455da2e3ebdSchin identifier names has been fixed. 456da2e3ebdSchin07-02-19 A bug introduced in ksh93 that causes global compound variable 457da2e3ebdSchin definitions inside functions to exit with "no parent" has been fixed. 458da2e3ebdSchin07-02-19 A bug in which using compound commands in process redirection 459da2e3ebdSchin arguments would give syntax errors <(...) and >(...) has been fixed. 460da2e3ebdSchin07-01-29 A bug which caused the shell to core dump which can occur when a 461da2e3ebdSchin built-in exits without closing files that it opens has been fixed. 462da2e3ebdSchin07-01-26 A bug in which ~(E) in patterns containing \ that are not inside () 463da2e3ebdSchin has been fixed. 464da2e3ebdSchin 465da2e3ebdSchin06-12-29 --- Release ksh93s --- 466da2e3ebdSchin06-12-29 A bug in which the value of IFS could be changed after a command 467da2e3ebdSchin substitution has been fixed. 468da2e3ebdSchin06-12-22 /dev/(tcp|udp|sctp)/HOST/SEVRICE now handles IPv6 addresses on 469da2e3ebdSchin systems that provide getaddrinfo(3). 470da2e3ebdSchin06-12-19 A -v option was added to read. With this option the value of 471da2e3ebdSchin the first variable name argument will become the default value 472da2e3ebdSchin when read from a terminal device. 473da2e3ebdSchin06-11-20 A bug in which "${foo[@]:1}}" expands a null argument (instead of 474da2e3ebdSchin no argument), when foo[0] is not empty has been fixed. 475da2e3ebdSchin06-11-16 The discipline functions have been modified to allow each subscript 476da2e3ebdSchin to act independently. Currently the discipline function will not 477da2e3ebdSchin be called when called from a discipline function of the same variable. 478da2e3ebdSchin06-11-14 A bug which could cause a core dump if a file descriptor for 479da2e3ebdSchin an internal file was closed from with a subshell has been fixed. 480da2e3ebdSchin06-10-30 The redirections <# pattern, and <## pattern have been added. 481da2e3ebdSchin Both seek forward to the beginning of the next line that contains 482da2e3ebdSchin the pattern. The <## form copies the skipped portion to standard 483da2e3ebdSchin output. 484da2e3ebdSchin06-10-26 On systems that support stream control transport, the virtual file 485da2e3ebdSchin name /dev/sctp/host/port can now be used to establish connections. 486da2e3ebdSchin06-10-26 The printf modifier # when used with d produces units in thousands 487da2e3ebdSchin with a single letter suffix added. The modifier # when used with 488da2e3ebdSchin the i specification provides units of 1024 with a two letter suffix. 489da2e3ebdSchin06-10-24 The value of $! is now set to the process id of a job put 490da2e3ebdSchin into the background with the bg command as required by POSIX. 491da2e3ebdSchin06-10-23 A bug in which the value of $! was affected by a background 492da2e3ebdSchin job started from a subshell has been fixed. 493da2e3ebdSchin06-10-23 A bug in ${var:offset:len} in multibyte locales has been fixed. 494da2e3ebdSchin06-10-15 The remaining math functions from C99 were added for any system 495da2e3ebdSchin that supports them. 496da2e3ebdSchin06-10-13 The klockwork.com software detected a few coding errors that 497da2e3ebdSchin have been fixed. 498da2e3ebdSchin06-10-12 A bug when skipping over `...` with ${x:=`...`} when x is set 499da2e3ebdSchin has been fixed. 500da2e3ebdSchin06-10-11 A bug in process floating constants produced by the %a format 501da2e3ebdSchin of printf has been fixed. 502da2e3ebdSchin06-10-06 A bug in which IFS was not being restored correctly in some 503da2e3ebdSchin cases after a subshell has been fixed. 504da2e3ebdSchin06-10-06 A bug in which pipefail was not detecting some failures in 505da2e3ebdSchin pipelines with 3 or more states has been fixed. 506da2e3ebdSchin06-10-03 A bug in the processing of >(...) with builtins which could 507da2e3ebdSchin cause the builtin to hang has been fixed. 508da2e3ebdSchin06-10-03 A bug in the for loop optimizer which causes >(...) process 509da2e3ebdSchin substitution to be ignored has been fixed. 510da2e3ebdSchin06-09-17 The -a option was added to typeset for indexed arrays. This 511da2e3ebdSchin is only needed when using the ([subscript]=value ...) form. 512da2e3ebdSchin06-09-06 The showme option was added. Each simple command not beginning 513da2e3ebdSchin with a redirection and not occurring with in the while, until, if, 514da2e3ebdSchin select condition can be preceded by a semi-colon which will 515da2e3ebdSchin be ignored when showme is off. When showme is on, any command 516da2e3ebdSchin preceded by a colon will be traced but not executed. 517da2e3ebdSchin06-08-16 As a new feature, a leading ~(N) on a pattern has no effect 518da2e3ebdSchin except when used for file expansion. In this case if not 519da2e3ebdSchin matches are found, the pattern is replaced by nothing rather 520da2e3ebdSchin than itself. 521da2e3ebdSchin06-08-11 A bug in the expansion of ${.sh.match[i]:${#.shmatch[i]}} has 522da2e3ebdSchin been fixed. 523da2e3ebdSchin06-08-10 The read builtin options -n and -N have been modified to treat 524da2e3ebdSchin the size as characters rather than bytes unless storing into a 525da2e3ebdSchin binary (typeset -B) variable. 526da2e3ebdSchin06-07-27 When the here document operator << is followed directly by a # 527da2e3ebdSchin rather than a -, the first line of the here-document determines 528da2e3ebdSchin how much whitespace is removed for each line. 529da2e3ebdSchin06-07-26 A bug in the C-shell history (enabled with set -H) in which the 530da2e3ebdSchin history event !$ was not processed has been fixed. 531da2e3ebdSchin06-07-21 A bug on some systems in which assigning PATH on a command line 532da2e3ebdSchin would not take effect has been fixed. 533da2e3ebdSchin06-07-20 Add ksh93 and rksh93 as allowable names for ksh binaries. 534da2e3ebdSchin06-07-20 Removed the SHOPT_OO compilation option which was only partially 535da2e3ebdSchin implemented. 536da2e3ebdSchin06-07-20 The ability to use egrep, grep, and fgrep expressions within 537da2e3ebdSchin shell patterns has been documented. 538da2e3ebdSchin06-07-17 A bug with arithmetic command expressions for locales in which 539da2e3ebdSchin the comma is a thousands separator has been fixed. 540da2e3ebdSchin06-07-13 The default HISTSIZE was increased from 128 to 512. 541da2e3ebdSchin06-07-13 A multibyte problem with locales that use shift codes has been fixed. 542da2e3ebdSchin06-06-23 A number of bug fixes for command, file, and variable completion 543da2e3ebdSchin have been mode. 544da2e3ebdSchin06-06-20 Floating point division by zero now yields the constant Inf or -Inf 545da2e3ebdSchin and floating functions with invalid arguments yield NaN. 546da2e3ebdSchin06-06-20 The floating point constants Inf and NaN can be used in arithmetic 547da2e3ebdSchin expressions. 548da2e3ebdSchin06-06-20 The functions isinf(), isnan(), tanhl() have been added for 549da2e3ebdSchin arithmetic expressions. 550da2e3ebdSchin06-06-13 Internal change to use ordering for variables instead of hashing 551da2e3ebdSchin to speed up prefix matching. 552da2e3ebdSchin06-06-13 A window between fork/exec in which a signal could get lost 553da2e3ebdSchin and cause a program to hang has been eliminated 554da2e3ebdSchin06-06-13 A bug in edit completion with quoted strings has been fixed. 555da2e3ebdSchin06-06-07 The restricted options can now be enabled by set as well as on 556da2e3ebdSchin the command line. Once set, it can not be disabled. 557da2e3ebdSchin06-06-04 Modified built-in binding so that for systems for which /bin 558da2e3ebdSchin and /usr/bin are the same, a builtin bound to /bin will get 559da2e3ebdSchin selected when either /bin or /usr/bin is scanned. 560da2e3ebdSchin06-06-04 Added literal-next character processing for emacs/gmacs mode. 561da2e3ebdSchin This change is not compatible with earlier versions of ksh93 562da2e3ebdSchin and ksh88 when the stty lnext is control-v. The sequence 563da2e3ebdSchin escape-control-v will display the shell version. 564da2e3ebdSchin06-05-31 Modified emacs and vi mode so that entering a TAB after a partial 565da2e3ebdSchin TAB completion, generates a listing of possible completions. 566da2e3ebdSchin After the second TAB, a number followed by a TAB will perform 567da2e3ebdSchin the completion with the corresponding item. 568da2e3ebdSchin06-05-19 Modified arithmetic so that conversions to strings default to 569da2e3ebdSchin the maximum number of precision digits. 570da2e3ebdSchin06-05-16 Bug fixes for multibyte locales. 571da2e3ebdSchin06-05-10 The =~ operator was added to [[...]] and [[ string ~= ERE ]] 572da2e3ebdSchin is equivalent to [[ string == ~(E)ERE ]]. 573da2e3ebdSchin06-04-25 A bug in the vi edit mode which could cause the shell to core dump 574da2e3ebdSchin when switching from emacs mode. 575da2e3ebdSchin06-04-17 A bug in which using LANG or LC_ in assignment lists with builtins 576da2e3ebdSchin did not restore the localed correctly has been fixed. 577da2e3ebdSchin06-04-04 A bug in which discipline functions could not be added to variables 578da2e3ebdSchin whose names started with .sh has been fixed. 579da2e3ebdSchin06-03-28 The -s option to typeset was added to modify -i to indicate short 580da2e3ebdSchin integers. 581da2e3ebdSchin06-03-28 A bug in which variables assignment lists before functions 582da2e3ebdSchin defined with function name were not passed on the functions 583da2e3ebdSchin invoked by this function has been fixed. 584da2e3ebdSchin06-03-28 A bug in which name references defined within a function defined 585da2e3ebdSchin with function name could not be used with compound variables has 586da2e3ebdSchin been fixed. 587da2e3ebdSchin06-03-27 A bug in which read <&p (print >&p) would cause the coprocess input 588da2e3ebdSchin (output) pipe to close before reading from (after writing to) 589da2e3ebdSchin it has been fixed. 590da2e3ebdSchin06-02-28 A bug in which stopping a job created with the hist builtin command 591da2e3ebdSchin would create a job that could not be restarted has been fixed. 592da2e3ebdSchin 593da2e3ebdSchin06-01-24 --- Release ksh93r --- 594da2e3ebdSchin06-01-24 A bug in which running commands with standard output closed would 595da2e3ebdSchin not work as expected has been fixed. 596da2e3ebdSchin06-01-23 A bug in which print -u<n> could fail when file descriptor <n> was 597da2e3ebdSchin open for writing has been fixed. 598da2e3ebdSchin06-01-19 The ?: arithmetic operator fixed to work when the operation after 599da2e3ebdSchin the colon was an assignment. 600da2e3ebdSchin05-12-24 A bug which could lead to a core dump when elements of a compound 601da2e3ebdSchin variable were array elements, i.e. foo=(bar=(1 2)), has been fixed. 602da2e3ebdSchin05-12-13 An arithmetic bug in which x+=y+=z was not working has been fixed. 603da2e3ebdSchin05-12-13 An arithmetic bug in which x||y was returning x when x was non-zero 604da2e3ebdSchin rather than 1 has been fixed. 605da2e3ebdSchin05-12-07 The aliases for integer and float have been changed to use attributes 606da2e3ebdSchin -li and -lE to handle long long and long double types. 607da2e3ebdSchin05-12-07 The histexpand (-H) option has been added which allows C-shell 608da2e3ebdSchin style history expansions using the history character !. 609da2e3ebdSchin05-12-07 The multiline option was added which changes that way the edit 610da2e3ebdSchin modes handle lines longer than the window width. Instead of 611da2e3ebdSchin horizontal scrolling, multiple lines on the screen are used. 612da2e3ebdSchin05-12-05 The whence builtin now returns an absolute pathname when the 613da2e3ebdSchin command is found in the current directory. 614da2e3ebdSchin05-11-29 A bug which caused ksh -c '[[ ! ((' to core dump rather than 615da2e3ebdSchin report a syntax error has been fixed. 616da2e3ebdSchin05-11-29 A bug when reading fixed length records into typeset -b variables 617da2e3ebdSchin which caused a zero byte to terminate the value has been fixed. 618da2e3ebdSchin05-11-22 The ability to seek to an offset within a file has been added 619da2e3ebdSchin with the new I/O redirection operators, <# and >#. Currently, 620da2e3ebdSchin these redirection operators must be followed by ((expr)) 621da2e3ebdSchin but in a future release, it should be able to used to seek forward 622da2e3ebdSchin to the specified shell pattern. In addition $(n<#) expands to the 623da2e3ebdSchin current byte offset for file descriptor n. 624da2e3ebdSchin05-11-22 The .sh.match array variable is now set after each [[ ... ]] 625da2e3ebdSchin pattern match. Previously it was only set for substring matches. 626da2e3ebdSchin05-10-17 A bug in which the library path variable could be prefixed 627da2e3ebdSchin with a directory when a .path file was not encountered in 628da2e3ebdSchin the directory of the executable has been fixed. 629da2e3ebdSchin05-09-15 A for/while loop optimizer bug in which $OPTIND was not 630da2e3ebdSchin correctly expanded has been fixed. 631da2e3ebdSchin05-09-05 A bug in which a history command that invoked a history 632da2e3ebdSchin command could go into an infinite loop has been fixed. 633da2e3ebdSchin05-08-31 In the case that IFS contains to adjacent new-lines so that 634da2e3ebdSchin new-line is not treated as a space delimiter, only a single 635da2e3ebdSchin new-line is deleted at the end of a command substitution. 636da2e3ebdSchin05-08-19 When a tilde substitution expands to the / directory and is 637da2e3ebdSchin followed by a /, it is replaced by the empty string. 638da2e3ebdSchin05-08-16 A bug in which n<&m did not synchronize m has been fixed. 639da2e3ebdSchin05-08-16 A bug in which process substitution ( <() and >() ) was not 640da2e3ebdSchin working within for and while loops has been fixed. 641da2e3ebdSchin05-07-24 A bug in which the pattern ~(E)(foo|bar) was treated as a syntax 642da2e3ebdSchin error has been fixed. 643da2e3ebdSchin05-07-24 A bug in completion with <n>=, where n was the one of the 644da2e3ebdSchin previous selection choices has been fixed. 645da2e3ebdSchin05-07-21 A bug with multibyte input when no edit mode was specified which 646da2e3ebdSchin caused the input line to shift left/right has been fixed. 647da2e3ebdSchin05-06-24 A race condition which could cause the exit status to get lost 648da2e3ebdSchin on some fast systems has been fixed. 649da2e3ebdSchin05-06-21 A bug in which nested patterns of the form {m,n}(pat) would cause 650da2e3ebdSchin syntax errors has been fixed. 651da2e3ebdSchin05-06-21 A bug in the macro expander has been fixed which could cause a 652da2e3ebdSchin syntax error for an expansion of the form ${x-$(...)} when 653da2e3ebdSchin x is set and the command substitution contained certain strings. 654da2e3ebdSchin05-06-08 On systems for which echo does not do System V style \ expansions, 655da2e3ebdSchin the -e option was added to enable these expansion. 656da2e3ebdSchin05-06-08 A bug in which ${var op pattern} to not work when inside an 657da2e3ebdSchin arithmetic expression has been fixed. 658da2e3ebdSchin05-05-23 An extension to shell patterns that allows matching of nested 659da2e3ebdSchin groups while skipping over quoted strings has been added. 660da2e3ebdSchin05-05-18 A bug in which the line number for errors was not correct for 661da2e3ebdSchin functions loaded from FPATH has been fixed. 662da2e3ebdSchin05-04-18 A bug in which the exit status $? is not set when a trap triggered 663da2e3ebdSchin by the [[...]] command is executed has been fixed. 664da2e3ebdSchin05-04-08 Redirection operators can be directly preceded with {varname} 665da2e3ebdSchin with no intervening space, where varname is a variable name which 666da2e3ebdSchin allows the shell to select a file descriptor > 10 and store it 667da2e3ebdSchin into varname. 668da2e3ebdSchin05-04-08 SHOPT_CMDLIB_BLTIN=1 now includes <cmdlist.h> generated table. 669da2e3ebdSchin05-04-07 [[ -o ?option ]] is true if "option" is a supported option. 670da2e3ebdSchin05-04-05 A bug in handling file completion with spaces in the names 671da2e3ebdSchin has been fixed. 672da2e3ebdSchin05-03-25 The SIGWINCH signal is caught by default to keeps the LINES and 673da2e3ebdSchin COLUMNS variables in sync with the actual window size. 674da2e3ebdSchin05-03-25 Building ksh with SHOPT_REMOTE=1 causes ksh to set --rc if stdin is 675da2e3ebdSchin a socket (presumably part of a remote shell invocation.) 676da2e3ebdSchin05-03-25 Building ksh with SHOPT_SYSRC=1 causes interactive ksh to source 677da2e3ebdSchin /etc/ksh.kshrc (if it exists) before sourcing the $ENV file. 678da2e3ebdSchin05-03-25 {first..last[..incr][%fmt]} sequences added to brace expansions 679da2e3ebdSchin when braceexpand is enabled. 680da2e3ebdSchin05-03-03 A bug where a SIGCHLD interrupt could cause a fifo open to fail has 681da2e3ebdSchin been fixed. 682da2e3ebdSchin05-02-25 A bug in which a builtin command run in the background could 683da2e3ebdSchin keep a file descriptor open which could cause a foreground 684da2e3ebdSchin process to hang has been fixed. 685da2e3ebdSchin05-02-24 A bug where builtin library commands (e.g., date and TZ) failed to 686da2e3ebdSchin detect environment variable changes has been fixed. 687da2e3ebdSchin05-02-22 The read builtin and word splitting are now consistent with respect 688da2e3ebdSchin to IFS -- both treat IFS as field delimiters. 689da2e3ebdSchin05-02-22 The read builtin no longer strips off trailing delimiters that 690da2e3ebdSchin are not space characters when there are fewer variables than fields. 691da2e3ebdSchin05-02-17 A builtin bug on systems where dlsym(libcmd) returns link-time 692da2e3ebdSchin bindings has been fixed. 693da2e3ebdSchin05-02-12 A bug in which the lib_init() function for .paths BUILTIN_LIB 694da2e3ebdSchin libraries was not called has been fixed. 695da2e3ebdSchin05-02-06 A bug on some systems in which moving the write end of a co-process 696da2e3ebdSchin to a numbered file descriptor could cause it to close has been fixed. 697da2e3ebdSchin05-02-06 A bug in the vi-edit mode in which the character under the cursor 698da2e3ebdSchin was not deleted in some cases with the d% directive has been fixed. 699da2e3ebdSchin05-02-06 A bug where external builtin stdout/stderr redirection corrupted 700da2e3ebdSchin stdout has been fixed. 701da2e3ebdSchin05-02-04 A bug where times formatting assumed CLK_TCK==60 has been fixed. 702da2e3ebdSchin 703da2e3ebdSchin05-01-11 --- Release ksh93q --- 704da2e3ebdSchin05-01-11 A bug in the integral divide by zero check has been fixed. 705da2e3ebdSchin05-01-11 The -l option has been added to read /etc/profile and 706da2e3ebdSchin $HOME/.profile, if they exist, before the first command. 707da2e3ebdSchin05-01-11 An argument parsing bug that caused `kill -s x -- n' to fail has 708da2e3ebdSchin been fixed. 709da2e3ebdSchin05-01-11 The .paths file, introduced in ksh93m, which can appear in 710da2e3ebdSchin any directory in PATH, now allows a line of the form 'BUILTIN_LIB=.' 711da2e3ebdSchin When a command is searched for this directory, and the full path 712da2e3ebdSchin matches the path of the built-in version of the command (listed 713da2e3ebdSchin by the 'builtin' command) then the built-in version of the command 714da2e3ebdSchin is used. When ksh is built with SHOPT_CMDLIB_DIR=1 then all libcmd 715da2e3ebdSchin functions become builtins with the '/opt/ast/bin/' directory prefix. 716da2e3ebdSchin05-01-10 A bug in which a nameref to a compound name caused a core dump has 717da2e3ebdSchin been fixed. 718da2e3ebdSchin05-01-09 A bug in which some SIGCHLD interrupts (from child processes exiting) 719da2e3ebdSchin caused a fatal print/echo error diagnostic has been fixed. 720da2e3ebdSchin04-12-24 A bug in which some SIGCHLD interrupts (from child processes exiting) 721da2e3ebdSchin corrupted the internal process/job list, sometimes causing the shell 722da2e3ebdSchin to hang, has been fixed. 723da2e3ebdSchin04-12-01 A bug in which typeset -Fn truncated less than n digits for large 724da2e3ebdSchin numbers has been fixed. 725da2e3ebdSchin04-11-25 A bug in which standard error could be closed after a redirection 726da2e3ebdSchin to /dev/stderr has been fixed. 727da2e3ebdSchin04-11-17 A bug in which an expansion of the form ${array[@]:3} could expand 728da2e3ebdSchin to ${array[0]} when ${array[3]} was not set has been fixed. 729da2e3ebdSchin04-10-22 The -E or -orc command line option reads ${ENV-$HOME/.kshrc} file. 730da2e3ebdSchin04-10-22 `-o foo' equivalent to `+o nofoo', `-o nobar' equivalent to `+o bar'. 731da2e3ebdSchin `--foo' equivalent to `-o foo', `--nofoo' equivalent to `+o foo' 732da2e3ebdSchin04-10-05 The .paths file, introduced in ksh93m, which can appear in 733da2e3ebdSchin any directory in PATH, now allows a line of the form 734da2e3ebdSchin 'BUILTIN_LIB=libname'. When a command is searched for this directory, 735da2e3ebdSchin the shared library named by libname will first be searched for a 736da2e3ebdSchin built-in version of the command. 737da2e3ebdSchin04-09-03 <<< here documents now handle quotes in the word token correctly. 738da2e3ebdSchin04-08-08 The maximum size for read -n and and read -N was increased from 739da2e3ebdSchin 4095 to 32M. 740da2e3ebdSchin04-08-04 printf %q was modified so that if an no operand was supplied, no 741da2e3ebdSchin no output would be generated rather than a quoted empty string. 742da2e3ebdSchin04-08-01 The -n and -N options of the read builtin has been modified 743da2e3ebdSchin when reading variables with the binary attribute so that the 744da2e3ebdSchin data is stored directly rather than through assignment. 745da2e3ebdSchin04-08-01 The shcomp command has been modified to process alias commands 746da2e3ebdSchin under some conditions. 747da2e3ebdSchin04-07-31 The .sh.match variable added in ksh93l, now works like other 748da2e3ebdSchin indexed arrays. 749da2e3ebdSchin04-07-08 A loop optimizer bug which occurs when typeset is used in 750da2e3ebdSchin a for or while loop inside a function has been fixed. 751da2e3ebdSchin04-06-24 The number of subexpressions in a pattern was increased to 64 752da2e3ebdSchin from the current number of 20. 753da2e3ebdSchin04-06-17 The -t option to read was modified to allow seconds to be 754da2e3ebdSchin specified as any arithmetic expression rather than just 755da2e3ebdSchin an integral number of seconds, for example even -t 'sin(.5)' 756da2e3ebdSchin is now valid. 757da2e3ebdSchin04-06-16 Two small memory leak problems were fixed. 758da2e3ebdSchin04-06-15 A bug in ${var/pattern/"string"} which occurred when string 759da2e3ebdSchin contained pattern matching characters has been fixed. 760da2e3ebdSchin04-05-08 printf $'%d\n' produced an erroneous error message and has 761da2e3ebdSchin been fixed. 762da2e3ebdSchin04-05-24 A bug in which an associative array without any elements could 763da2e3ebdSchin cause a core dump when a script with an associative array with 764da2e3ebdSchin the same name was declared in a script invoked by name has 765da2e3ebdSchin been fixed. 766da2e3ebdSchin04-05-11 A bug in which an exec statement could close the script that 767da2e3ebdSchin is being processed in a script that is run by name causing 768da2e3ebdSchin a failure has been fixed. 769da2e3ebdSchin04-04-28 If the first character of assignment to an integer variable was 0, 770da2e3ebdSchin the variable had been treated as unsigned. This behavior was 771da2e3ebdSchin undocumented and has been removed. 772da2e3ebdSchin04-04-05 A bug in which the positioning of standard input could be incorrect 773da2e3ebdSchin after reading from standard input from a subshell has been fixed. 774da2e3ebdSchin04-03-30 A bug in the for loop optimizer which in rare cases could cause 775da2e3ebdSchin memory corruption has been fixed. 776da2e3ebdSchin04-03-29 The preset alias source='command .' has been added. 777da2e3ebdSchin04-03-29 A bug introduced in ksh93p on some systems in which invoked by 778da2e3ebdSchin name with #! on the first line would not get the signals handling 779da2e3ebdSchin initialized correctly has been fixed. 780da2e3ebdSchin04-03-29 A bug introduced in ksh93p in which a HUP signal received by 781da2e3ebdSchin a shell that is a session group leader was not passed down to 782da2e3ebdSchin its children has been fixed. 783da2e3ebdSchin 784da2e3ebdSchin04-02-28 --- Release ksh93p --- 785da2e3ebdSchin04-02-28 The ability to apply an append discipline to any variable has 786da2e3ebdSchin been added. 787da2e3ebdSchin04-02-14 A bug in which the exportall option (set -a) would cause incorrect 788da2e3ebdSchin results for arrays has been fixed. 789da2e3ebdSchin04-02-02 A bug in which an exported array would pass more than 790da2e3ebdSchin the first element to a script invoked by name has been fixed. 791da2e3ebdSchin04-02-02 A bug on some systems in which name=value pairs preceding a script 792da2e3ebdSchin invoked by name was not getting passed to the script has been fixed. 793da2e3ebdSchin04-01-20 A bug in which an unset discipline function could cause a core 794da2e3ebdSchin dump on some systems has been fixed. 795da2e3ebdSchin04-01-12 A bug in which a continue or break called outside a loop from 796da2e3ebdSchin inside a function defined with name() syntax could affect 797da2e3ebdSchin the invoking function has been fixed. 798da2e3ebdSchin04-01-08 If a command name begins with ~, only filename completion will be 799da2e3ebdSchin attempted rather than pathname completion using the builtin editors. 800da2e3ebdSchin04-01-08 A bug in the vi edit mode in which the wrong repeat count on 801da2e3ebdSchin multiple word replacements with the . directive has been fixed. 802da2e3ebdSchin04-01-06 Backspace characters are now handled correctly in prompt strings. 803da2e3ebdSchin04-01-06 The getopts builtin has been modified to accept numerical 804da2e3ebdSchin arguments of size long long on systems that support this. 805da2e3ebdSchin04-01-06 A bug in which unsetting all elements of an associative array 806da2e3ebdSchin would cause it to be treated as an indexed array has been fixed. 807da2e3ebdSchin03-12-15 A bug in which a quoted string ending with an unescaped $ would 808da2e3ebdSchin delete the ending $ in certain cases has been fixed. 809da2e3ebdSchin03-12-05 A bug in which the shell could hang when set -x tracing a command 810da2e3ebdSchin when an invalid multibyte character is encountered has been fixed. 811da2e3ebdSchin03-12-05 On some systems, if the KEYBD trap is set, then commands that use 812da2e3ebdSchin the meta key were not processed until return was hit. This 813da2e3ebdSchin has been fixed. 814da2e3ebdSchin03-12-05 A problem which occurred when the login shell was not a group 815da2e3ebdSchin leader that could cause it to fail has been fixed. 816da2e3ebdSchin03-12-05 A problem in which a shell could core dump after receiving a signal 817da2e3ebdSchin that should cause it to terminate while it was in the process 818da2e3ebdSchin of acquiring more space has been fixed. 819da2e3ebdSchin03-12-05 If ENV is not specified, the shell will default to $HOME/.kshrc 820da2e3ebdSchin for interactive shells. 821da2e3ebdSchin03-11-21 A bug introduced in ksh93o in which the DEBUG trap could get 822da2e3ebdSchin disabled after it triggered has been fixed. 823da2e3ebdSchin03-11-04 A bug in which using arithmetic prefix operators ++ or -- on a 824da2e3ebdSchin non-lvalue could cause a core dump has been fixed. 825da2e3ebdSchin03-11-04 A bug in which leading zeros were stripped from variable 826da2e3ebdSchin expansions within arithmetic computation to avoid being treated 827da2e3ebdSchin as octal constants when they should not have, has been fixed. 828da2e3ebdSchin03-10-08 A bug introduced in ksh93o in which a large here document inside 829da2e3ebdSchin a function definition could get corrupted has been fixed. 830da2e3ebdSchin03-09-22 A bug in which the .get discipline function was not being 831da2e3ebdSchin called when a string variable was implicitly referenced from 832da2e3ebdSchin within a numerical expression has been fixed. 833da2e3ebdSchin03-09-22 A bug in which a script without a leading #! could get executed 834da2e3ebdSchin by /bin/sh rather than the current shell on some systems has 835da2e3ebdSchin been fixed. 836da2e3ebdSchin03-09-12 To improve conformance with ksh88, leading zeros will be ignored 837da2e3ebdSchin when getting the numerical value of a string variable so that 838da2e3ebdSchin they will not be treated as octal constants. 839da2e3ebdSchin03-09-03 The builtin kill command now processes obsolete invocations 840da2e3ebdSchin such as kill -1 -pid. 841da2e3ebdSchin03-09-02 The restriction on modifying FPATH in a restricted shell (sh -r) 842da2e3ebdSchin has been documented. 843da2e3ebdSchin03-09-02 The restricted shell (sh -r) has been modified to disallow 844da2e3ebdSchin executing command -p. 845da2e3ebdSchin03-08-07 A bug in which the KEYBD trap was not being invoked when 846da2e3ebdSchin characters with the 8th bit set has been fixed. 847da2e3ebdSchin03-08-02 A parser bug introduced in ksh93o which caused the character 848da2e3ebdSchin after () in a Posix function definition to be skipped 849da2e3ebdSchin when reading from standard input has been fixed. 850da2e3ebdSchin03-08-01 A bug in which "${foo#pattern}(x)" treated (x) as if it were 851da2e3ebdSchin part of the pattern has been fixed. 852da2e3ebdSchin03-08-01 The command -x option has been modified so that any trailing 853da2e3ebdSchin arguments that do expand to a single word will be included 854da2e3ebdSchin on each invocation, so that commands like command -x mv * dir 855da2e3ebdSchin work as expected. 856da2e3ebdSchin 857da2e3ebdSchin03-07-20 --- Release ksh93o+ --- 858da2e3ebdSchin03-07-20 A bug in which could cause memory corruption when a posix 859da2e3ebdSchin function invoked another one has been fixed. 860da2e3ebdSchin03-07-15 A bug in which a file descriptor>2 could be closed before 861da2e3ebdSchin executing a script has been fixed. 862da2e3ebdSchin03-07-15 A parsing error for <() and >() process substitutions inside 863da2e3ebdSchin command substitution has been fixed. 864da2e3ebdSchin03-07-15 A parsing error for patterns of the form {...}(...) when 865da2e3ebdSchin used inside ${...} has been fixed. 866da2e3ebdSchin03-07-15 An error in which expanding an indexed array inside a compound 867da2e3ebdSchin variable could cause a core dump has been fixed. 868da2e3ebdSchin03-07-15 A bug in which under on rare occassions a job completion interrupt 869da2e3ebdSchin could cause to core dump has been fixed. 870da2e3ebdSchin03-06-26 A bug in which process substitution embedded within command 871da2e3ebdSchin substitution would generate a syntax error has been fixed. 872da2e3ebdSchin03-96-23 A bug in which ${@:offset:len} could core dump when there 873da2e3ebdSchin were no arguments has been fixed. 874da2e3ebdSchin03-96-23 A bug in which ${X[@]:offset:len} could core dump when X 875da2e3ebdSchin was unset has been fixed. 876da2e3ebdSchin03-06-22 The -x option was added to the command builtin. If this 877da2e3ebdSchin option is on, and the number of arguments would exceed ARG_MAX, 878da2e3ebdSchin the command will be invoked multiple times with a subset of 879da2e3ebdSchin the arguments. For example, with alias grep='command -x grep, 880da2e3ebdSchin any number of arguments can be specified. 881da2e3ebdSchin03-06-14 A bug in which could cause a core dump on some systems with 882da2e3ebdSchin vi and emacs editors with the MULTIBYTE option has been fixed. 883da2e3ebdSchin03-06-06 A bug in which the shell could core dump when a script was 884da2e3ebdSchin run from its directory, and the script name a symlink to a file 885da2e3ebdSchin beginning with .., has been fixed. 886da2e3ebdSchin03-06-05 A bug in which the shell could core dump when a child process 887da2e3ebdSchin that it is unaware of terminates while it is calling malloc() 888da2e3ebdSchin has been fixed. 889da2e3ebdSchin03-06-02 An option named globstar (set -G) has been added. When enabled, 890da2e3ebdSchin during pathname expansion, any component that consists only of ** is 891da2e3ebdSchin matches all files and any number of directory levels. 892da2e3ebdSchin03-05-30 A bug in which the PATH search could give incorrect results when 893da2e3ebdSchin run from directory foo and PATH contained .:foo:xxx has been fixed. 894da2e3ebdSchin03-05-29 Some changes were made to the code that displays the prompt in edit 895da2e3ebdSchin mode to better handle escape sequences in the prompt. 896da2e3ebdSchin03-05-27 I added = to the list of characters that mark the beginning of 897da2e3ebdSchin a word for edit completion so that filenames in assignments 898da2e3ebdSchin can be completed. 899da2e3ebdSchin03-05-20 A bug in which read -N could hang on some systems when reading 900da2e3ebdSchin from a terminal or a pipe has been fixed. 901da2e3ebdSchin03-05-19 A bug in which the output of uname from a command substitution 902da2e3ebdSchin would go to the standard output of the invoking command when 903da2e3ebdSchin uname was invoked with a non-standard option has been fixed. 904da2e3ebdSchin03-05-19 A job control bug which would cause the shell to exit because 905da2e3ebdSchin it hadn't take back the terminal has been fixed. The bug 906da2e3ebdSchin could occur when running a function that contained a pipeline 907da2e3ebdSchin whose last element was a function. 908da2e3ebdSchin03-05-19 A job control timing bug introduced in ksh93o on some systems 909da2e3ebdSchin which could cause a pipeline to hang if the first component 910da2e3ebdSchin completed quickly has been fixed. 911da2e3ebdSchin03-05-13 The read builtin has been modified so that the builtin editors 912da2e3ebdSchin will not overwrite output from a previous incomplete line. 913da2e3ebdSchin03-05-13 A bug in which the name of an identifier could have the string 914da2e3ebdSchin .sh. prefixed to it after expanding a variable whose name begins 915da2e3ebdSchin with .sh. has been fixed. 916da2e3ebdSchin03-05-13 A bug in the expansion of $var for compound variables in which 917da2e3ebdSchin some elements would not be output when the name was a prefix 918da2e3ebdSchin of another name in the compound variable has been fixed. 919da2e3ebdSchin03-05-08 The last item in the ksh93o release on 03-01-02 has been 920da2e3ebdSchin altered slightly to preserve the leading 0's when the 921da2e3ebdSchin preceding character is a digit. Thus, with typeset -LZ3 x=10, 922da2e3ebdSchin $(( 1$x)) will be 1010 whereas $(( $x) will be 10. 923da2e3ebdSchin03-04-25 A bug in which if x is a name reference, then nameref y=x.foo 924da2e3ebdSchin did not follow x has been fixed. 925da2e3ebdSchin 926da2e3ebdSchin03-03-18 --- Release ksh93o --- 927da2e3ebdSchin03-03-18 A -N unary operator was added to test and [[...]] which returns 928da2e3ebdSchin true if the file exists and the file has been modified since it 929da2e3ebdSchin was last read. 930da2e3ebdSchin03-03-18 The TIMEFORMAT variable was added to control the format for 931da2e3ebdSchin the time compound command. The formatting description is 932da2e3ebdSchin described in the man page. 933da2e3ebdSchin03-03-06 A -N n option was added to read which causes exactly n bytes 934da2e3ebdSchin to be read unlike -n n which causes at most n bytes to be read. 935da2e3ebdSchin03-03-03 Three new shell variables were added. The variable .sh.file 936da2e3ebdSchin stores the full pathname of the file that the current command 937da2e3ebdSchin was found in. The variable .sh.fun names the current function 938da2e3ebdSchin that is running. The variable .sh.subshell contains the depth 939da2e3ebdSchin of the current subshell or command substitution. 940da2e3ebdSchin03-03-03 When the DEBUG trap is executed, the current command line after 941da2e3ebdSchin expansions is placed in the variable .sh.command. The trap 942da2e3ebdSchin is also now triggered before each iteration of a for, select, 943da2e3ebdSchin and case command and before each assignment and redirection. 944da2e3ebdSchin03-02-28 Function definitions are no longer stored in the history file so 945da2e3ebdSchin that set -o nolog no longer has any meaning. 946da2e3ebdSchin03-02-28 All function definitions can be displayed with typeset -f not 947da2e3ebdSchin just those stored in the history file. In addition, typeset +f 948da2e3ebdSchin displays the function name followed by a comment containing the 949da2e3ebdSchin line number and the path name for the file that defined this function. 950da2e3ebdSchin03-02-28 A bug in which the value of $LINENO was not correct when executing 951da2e3ebdSchin command contained inside mult-line command substitutions has been 952da2e3ebdSchin fixed. 953da2e3ebdSchin03-02-19 Since some existing ksh88 scripts use the undocumented and 954da2e3ebdSchin unintended ability to insert a : in front of the % and # parameter 955da2e3ebdSchin expansion operators, ksh93 was modified to accept :% as equivalent 956da2e3ebdSchin to % and :# as equivalent to # with ${name op word}. 957da2e3ebdSchin03-02-14 A bug which could cause a core dump when reading from standard 958da2e3ebdSchin error when standard error was a pty has been fixed. 959da2e3ebdSchin03-02-14 The shell arithmetic was modified to use long double on systems 960da2e3ebdSchin that provide this data type. 961da2e3ebdSchin03-02-09 A bug in which a function located in the first directory in FPATH 962da2e3ebdSchin would not be found when the last component of PATH was . and the 963da2e3ebdSchin current directory was one of the directories in PATH has been fixed. 964da2e3ebdSchin03-02-07 The trap and kill builtin commands now accept a leading SIG prefix 965da2e3ebdSchin on the signal names as documented. 966da2e3ebdSchin03-02-05 A bug in the expansion of ${var/$pattern}, when pattern contained 967da2e3ebdSchin \[ has been fixed. 968da2e3ebdSchin03-02-05 A bug in which .sh.match[n], n>0, was not being set for substring 969da2e3ebdSchin matches with % and %% has been fixed. 970da2e3ebdSchin03-01-15 A bug in which getopts did not work for numerical arguments specified 971da2e3ebdSchin as n#var in the getopts string has been fixed. 972da2e3ebdSchin03-01-09 A bug in which using ${.sh.match} multiple times could lead to 973da2e3ebdSchin a memory exception has been fixed. 974da2e3ebdSchin03-01-06 A bug in the expansion of ${var/pattern/$string} in the case that 975da2e3ebdSchin $string contains \digit has been fixed. 976da2e3ebdSchin03-01-02 A -P option was added for systems such as Solaris 8 that support 977da2e3ebdSchin profile shell. 978da2e3ebdSchin03-01-02 For backward compatibility with ksh88, arithmetic expansion 979da2e3ebdSchin with ((...)) and let has been modified so that if x is a zero-filled 980da2e3ebdSchin variable, $x will not be treated as an octal constant. 981da2e3ebdSchin 982da2e3ebdSchin02-12-05 --- Release ksh93n+ --- 983da2e3ebdSchin02-11-30 A bug that can show up in evaluating arithmetic statements that 984da2e3ebdSchin are in an autoloaded function when the function is autoload from 985da2e3ebdSchin another function has been fixed. 986da2e3ebdSchin02-11-30 An optimization bug in which an expansion of the form ${!name.@}, 987da2e3ebdSchin which occurred inside a for or a while loop, when name is a name 988da2e3ebdSchin reference, has been fixed. 989da2e3ebdSchin02-11-18 A bug in which modifying array variables in a subshell could leave 990da2e3ebdSchin side effects in the parent shell environment has been fixed. 991da2e3ebdSchin02-11-18 A memory leak when unsetting an associative array has been fixed. 992da2e3ebdSchin02-11-14 The code to display compound objects was rewritten to make 993da2e3ebdSchin it easier for runtime extensions to reuse this code. 994da2e3ebdSchin02-11-14 A change was made to allow runtime builtins to be notified when 995da2e3ebdSchin a signal is received so that cleanup can be performed. 996da2e3ebdSchin02-10-31 User applications can now trap the ALRM signal. Previously, 997da2e3ebdSchin the ALRM signal was used internally and could not be used 998da2e3ebdSchin by applications. 999da2e3ebdSchin02-10-31 A bug in which signals received while reading from a coprocess 1000da2e3ebdSchin for which traps were set was not handled correctly has been fixed. 1001da2e3ebdSchin02-10-31 A bug in which a file opened with exec inside a subshell could 1002da2e3ebdSchin be closed before the subshell completed has been fixed. 1003da2e3ebdSchin02-10-21 A bug in which setting PATH or FPATH inside a function might not 1004da2e3ebdSchin take effect has been fixed. 1005da2e3ebdSchin02-10-21 A bug which could cause a core dump when a local SECONDS variable 1006da2e3ebdSchin is defined in a function has been fixed. 1007da2e3ebdSchin02-10-15 A bug in which the associate array name operator ${!array[@]} 1008da2e3ebdSchin could return the same name multiple times has been fixed. 1009da2e3ebdSchin02-10-15 A bug in which the zero'th element of an associative array was 1010da2e3ebdSchin not getting set when an assignment was made without a subscript 1011da2e3ebdSchin specified has been fixed. 1012da2e3ebdSchin 1013da2e3ebdSchin02-09-30 --- Release ksh93n --- 1014da2e3ebdSchin02-09-30 The maximum indexed array size was increased to 16Megs. 1015da2e3ebdSchin02-09-30 A bug which could cause a core dump when changing attributes 1016da2e3ebdSchin of associative array has been fixed. 1017da2e3ebdSchin02-09-30 A bug in which exporting an array variable would not export the 1018da2e3ebdSchin 0-th element has been fixed. 1019da2e3ebdSchin02-09-30 A bug in which an array assignment of the form a=($a ...) would unset 1020da2e3ebdSchin 'a' before the right hand side was evaluated has been fixed. 1021da2e3ebdSchin02-09-27 A bug in which the error message for ${var?message} when var was 1022da2e3ebdSchin null or unset did not contain the variable name var has been fixed. 1023da2e3ebdSchin02-09-27 A bug in which closing file descriptors 0 through 2 could 1024da2e3ebdSchin cause a subsequent here document to fail has been fixed. 1025da2e3ebdSchin02-09-14 A bug in whence which occurs when the specified name contained 1026da2e3ebdSchin a / has been fixed. 1027da2e3ebdSchin02-09-14 A bug in the parser for strings of the form name$((expr))=value 1028da2e3ebdSchin has been fixed. 1029da2e3ebdSchin02-09-14 A for loop optimization bug in which the number of elements in 1030da2e3ebdSchin an array was treated as an invariant has been fixed. 1031da2e3ebdSchin02-09-09 A bug in which redirection or closing of a file descriptor between 1032da2e3ebdSchin 3 and 9 could cause a subsequent here document to fail has been 1033da2e3ebdSchin fixed. 1034da2e3ebdSchin02-09-09 A bug in which a background job was not removed from the job list 1035da2e3ebdSchin when a subshell completed has been fixed, for example (prog&). 1036da2e3ebdSchin02-09-03 A bug in which an assignment of the form name=(integer x=3) 1037da2e3ebdSchin could be interpretted as an array assignment rather than a 1038da2e3ebdSchin compound variable assignment has been fixed. 1039da2e3ebdSchin02-08-19 A command completion bug which occurred on file systems that 1040da2e3ebdSchin are case insensitive has been fixed. 1041da2e3ebdSchin02-08-19 A bug which could lead to an exception on some systems (for 1042da2e3ebdSchin example FREEBSD) which occurred when setting PATH has been fixed. 1043da2e3ebdSchin02-08-11 A bug in arithmetic rounding in which a value input as a decimal 1044da2e3ebdSchin string would output as a rounded version of the string has 1045da2e3ebdSchin been fixed. 1046da2e3ebdSchin02-08-11 A bug in which the last character could be deleted from shell 1047da2e3ebdSchin traces and from whence when called from a multibyte locale 1048da2e3ebdSchin has been fixed. 1049da2e3ebdSchin02-08-01 A bug which could cause a core dump to occur when a shell script 1050da2e3ebdSchin is executed while a coprocess is running that has closed the 1051da2e3ebdSchin output pipe has been fixed. 1052da2e3ebdSchin02-08-01 A bug in which command completion in multibyte mode could 1053da2e3ebdSchin corrupt memory for long command lines has been fixed. 1054da2e3ebdSchin 1055da2e3ebdSchin02-06-17 --- Release ksh93n- --- 1056da2e3ebdSchin02-06-17 A bug in which user defined macros could cause a core dump in 1057*7c2fbfb3SApril Chin with MULTIBYTE mode has been fixed. 1058da2e3ebdSchin02-06-17 A bug in which printf format specifiers of the form %2$s were causing 1059da2e3ebdSchin a core dump has been fixed. 1060da2e3ebdSchin02-06-17 A bug in which setting stty to noecho mode did not prevent the 1061da2e3ebdSchin echoing of characters by ksh when emacs or viraw mode 1062da2e3ebdSchin was enabled has been fixed. 1063da2e3ebdSchin02-06-17 A bug in which background job completion could cause the sleep 1064da2e3ebdSchin builtin to terminate prematurely has been fixed. 1065da2e3ebdSchin02-06-17 A bug in which the shell could core dump if getopts was called 1066da2e3ebdSchin when the OPTIND variable contained a negative value has been fixed. 1067da2e3ebdSchin02-06-10 The edit mode prompt has been modified to handle escape sequences. 1068da2e3ebdSchin02-06-10 A bug which occurred for interactive shells in which the builtin 1069da2e3ebdSchin cat command was used in command substitution on a file whose 1070da2e3ebdSchin size was larger than PIPE_BUF has been fixed. 1071da2e3ebdSchin02-06-10 A bug in which the trap on ERR was not being processed when 1072da2e3ebdSchin set inside a function has been fixed. 1073da2e3ebdSchin02-06-07 A bug in which function definitions could cause the history count 1074da2e3ebdSchin to be decremented by one (and even become negative) has been fixed. 1075da2e3ebdSchin02-06-05 A bug in read in which share mode could be enabled has been fixed. 1076da2e3ebdSchin02-05-28 A bug which could occur when the last command of a script was 1077da2e3ebdSchin a case statement and the action selected ended in ;& instead of ;; 1078da2e3ebdSchin has been fixed. 1079da2e3ebdSchin02-05-23 A bug with unary + introduced in ksh93k has been fixed. 1080da2e3ebdSchin02-05-07 A bug in substitutions of the form ${var/pattern/string} in which 1081da2e3ebdSchin a backslash was inserted in the replacement string when it contained 1082da2e3ebdSchin a special pattern character has been fixed. 1083da2e3ebdSchin02-05-01 A bug in the emacs edit mode which occurred in versions compiled 1084da2e3ebdSchin for multibyte character sets which occurred when a repeated search 1085da2e3ebdSchin was requested after a long line had been returned for the previous 1086da2e3ebdSchin search has been fixed. 1087da2e3ebdSchin02-04-02 vi and emacs edit modes were modified so that tab completion is 1088da2e3ebdSchin disabled when invoked from the read built-in. 1089da2e3ebdSchin 1090da2e3ebdSchin02-03-26 --- Release ksh93m+ --- 1091da2e3ebdSchin02-03-26 A bug in which \ was not handled correctly when used in file 1092da2e3ebdSchin expansion has been fixed. 1093da2e3ebdSchin02-02-18 A bug in which lines beginning with a # were deleted from here 1094da2e3ebdSchin documents when the here-document delimiter was followed by 1095da2e3ebdSchin a comment has been fixed. 1096da2e3ebdSchin02-12-06 An optimization bug in which ${!x[@]) was treated as invariant in 1097da2e3ebdSchin a for loop has been fixed. 1098da2e3ebdSchin02-02-06 A bug in which the ERR trap is not cleared for a script invoked 1099da2e3ebdSchin by name from within a function has been fixed. 1100da2e3ebdSchin02-01-08 A bug in which a shell script executed from within a subshell 1101da2e3ebdSchin could cause this script to have an invalid pointer leading 1102da2e3ebdSchin to a memory fault has been fixed. 1103da2e3ebdSchin02-01-07 Added here documents of the form <<< word (as per zsh) which 1104da2e3ebdSchin is equivalent to << delim\nword\ndelim. 1105da2e3ebdSchin02-01-07 A bug in which the first word of a compound assignment, 1106da2e3ebdSchin x=(word ...), was treated as a reserved word has been fixed. 1107da2e3ebdSchin02-01-07 A bug in the handling of \ when noglob was enabled and a 1108da2e3ebdSchin substitution of the form ${word op pattern} occurred in the 1109da2e3ebdSchin same word has been fixed. 1110da2e3ebdSchin02-01-07 A compilation option, CMDLIB_BLTIN in the file OPTION, has 1111da2e3ebdSchin been added. When this options is set, all commands implemented 1112da2e3ebdSchin in libcmd become shell builtin commands by default. 1113da2e3ebdSchin02-01-07 A bug in which builtin foo, where foo is already a builtin 1114da2e3ebdSchin would result in the builtin foo getting removed has been fixed. 1115da2e3ebdSchin02-01-07 A bug which the shell executed a command found in the current 1116da2e3ebdSchin directory when PATH have no valid directories has been fixed. 1117da2e3ebdSchin01-11-28 The value of $? was not being set when called with exit. 1118da2e3ebdSchin01-11-28 If the last command was of the form (...) and a trap on EXIT or 1119da2e3ebdSchin ERR was set, and the command inside () modified the trap, then 1120da2e3ebdSchin the original trap wasn't executed. 1121da2e3ebdSchin01-11-26 The value for 0 is now preceded by the base number when 1122da2e3ebdSchin the base was not 10. 1123da2e3ebdSchin01-11-26 The default has compilation mode has been changes so that 1124da2e3ebdSchin viraw mode will always be on. 1125da2e3ebdSchin 1126da2e3ebdSchin01-10-31 --- Release ksh93m --- 1127da2e3ebdSchin01-10-31 A for loop optimizer bug for subshells contained withing for 1128da2e3ebdSchin loops has been fixed. 1129da2e3ebdSchin01-10-16 typeset without arguments no longer outputs variable names 1130da2e3ebdSchin that do not have any attributes that are set. 1131da2e3ebdSchin01-10-16 A bug introduced in ksh93l in which assignments specified with 1132da2e3ebdSchin the exec built-in were not being expanded properly has been 1133da2e3ebdSchin fixed. 1134da2e3ebdSchin01-10-11 An optimization bug in which ${!x) was treated as invariant in 1135da2e3ebdSchin a for loop has been fixed. 1136da2e3ebdSchin01-10-11 Unsigned integer variables in bases other than 10 are printed now 1137da2e3ebdSchin expand in that base with the base prefix. 1138da2e3ebdSchin01-10-10 A number of typos in the self generating man pages for shell 1139da2e3ebdSchin built-ins have been fixed. 1140da2e3ebdSchin01-10-04 The self generated man pages for hist and fc were not working 1141da2e3ebdSchin correctly and have been fixed. 1142da2e3ebdSchin01-10-03 Yet another optimizer bug in which shell patterns were 1143da2e3ebdSchin treated as invariants has been fixed. 1144da2e3ebdSchin01-09-27 Two bugs relating to multibyte history searches and to find 1145da2e3ebdSchin have been fixed. 1146da2e3ebdSchin01-09-27 A bug introduced in ksh93k in which the PATH searching was 1147da2e3ebdSchin not restored after running a command with an assignment list 1148da2e3ebdSchin has been fixed. 1149da2e3ebdSchin01-09-26 A bug in which a zero filled field was treated as octal when 1150da2e3ebdSchin converted to integer has been fixed. 1151da2e3ebdSchin01-09-26 Yet another bug in the optimization of for loops related to 1152da2e3ebdSchin recursive functions with break or continue statements has been fixed. 1153da2e3ebdSchin01-09-25 The exponentiation operator ** was added to the shell arithmetic 1154da2e3ebdSchin evaluation. It has higher precedence than * and is left 1155da2e3ebdSchin associative. 1156da2e3ebdSchin01-09-25 The code was modified to use the ast multibyte macros 1157da2e3ebdSchin and functions for handing multibyte locales. 1158da2e3ebdSchin01-09-25 The expansion ${parameter:offset:length} now handles negative 1159da2e3ebdSchin offsets which cause offsets to be measured from the end. 1160da2e3ebdSchin01-09-25 Some spelling errors in the documentation were corrected. 1161da2e3ebdSchin01-09-24 The /dev/tcp/host/port and /dev/udp/host/port now allow 1162da2e3ebdSchin the ports to be specified by service name. 1163da2e3ebdSchin01-09-24 The change staring with ksh93g in which the the appropriate 1164da2e3ebdSchin library path variable is prepended with a corresponding library 1165da2e3ebdSchin directory has been modified. With the new method, only the 1166da2e3ebdSchin library path defined in the file named .paths in the directory 1167da2e3ebdSchin where the executable is found will be modified. See the 1168da2e3ebdSchin man page for more details. 1169da2e3ebdSchin01-09-23 The .fpath file (see ksh93h) is no longer looked for in each 1170da2e3ebdSchin directory on the path to locate function directories. The 1171da2e3ebdSchin file named .paths is used instead. 1172da2e3ebdSchin01-09-23 A bug in which IFS was not being restored after being changed in 1173da2e3ebdSchin a subshell has been fixed. 1174da2e3ebdSchin01-09-16 With the vi and emacs edit modes, after a list of command 1175da2e3ebdSchin or functions is generated with = or M-= respectively, 1176da2e3ebdSchin any element from the list can be pasted on the command line 1177da2e3ebdSchin by preceding the = or M-= with a numeric parameter specifying 1178da2e3ebdSchin the position on the list. 1179da2e3ebdSchin01-09-16 A bug in ksh93l caused command completion not to find aliases 1180da2e3ebdSchin and functions. Command listing from the edit mode was presented 1181da2e3ebdSchin in reverse order. This has been fixed. 1182da2e3ebdSchin01-09-13 Another bug in the optimization of for loops related to subshells 1183da2e3ebdSchin when traps were set has been fixed. 1184da2e3ebdSchin01-09-07 A change in ksh93l caused brace expansion to stop working 1185da2e3ebdSchin and this has been fixed. 1186da2e3ebdSchin01-09-04 A bug introduced in ksh93k in which an arithmetic statement 1187da2e3ebdSchin within a function that used name references did not follow the 1188da2e3ebdSchin reference has been fixed. 1189da2e3ebdSchin01-09-04 A bug introduced in ksh93l in which export -p did not prefix 1190da2e3ebdSchin each export with the word export has been fixed. 1191da2e3ebdSchin01-08-29 A bug in multibyte input which occurred when a partial multibyte 1192da2e3ebdSchin character was received has been fixed. 1193da2e3ebdSchin01-08-29 A bug introduced in ksh93l which could cause a core dump 1194da2e3ebdSchin when an assignment list containing PATH is specified inside 1195da2e3ebdSchin command substitution has been fixed. 1196da2e3ebdSchin01-08-09 Another bug in the optimization of for loops in ksh93l caused 1197da2e3ebdSchin errors in recursive functions using local variables that 1198da2e3ebdSchin contained for loops has been fixed. 1199da2e3ebdSchin01-07-27 A bug in which IFS would be unset after a command substitution 1200da2e3ebdSchin inside a here document has been fixed. 1201da2e3ebdSchin01-07-26 To conform to the POSIX standard, if you invoked ksh name, 1202da2e3ebdSchin and name does not contain a /, it will first try to run 1203da2e3ebdSchin one in the current directory whether it is executable or not 1204da2e3ebdSchin before doing a path search for an executable script. Earlier 1205da2e3ebdSchin versions first checked for an executable script using the 1206da2e3ebdSchin PATH variable. 1207da2e3ebdSchin01-07-23 A bug in which unset -f invoked in a subshell could unset a 1208da2e3ebdSchin function defined in the parent has been fixed. 1209da2e3ebdSchin01-07-16 A bug in the optimization of for loops in ksh93l caused 1210da2e3ebdSchin name references to be treated as invariants has been fixed. 1211da2e3ebdSchin01-07-09 A bug in which a discipline function applied to a local variable 1212da2e3ebdSchin could cause a shell exception has been fixed. Discipline 1213da2e3ebdSchin functions can only be specified for global variables. 1214da2e3ebdSchin 1215da2e3ebdSchin01-06-18 --- Release ksh93l --- 1216da2e3ebdSchin01-06-18 A bug in assigning integers larger than can be represented as 1217da2e3ebdSchin long integers to floating point variables has been fixed. 1218da2e3ebdSchin01-06-18 A bug in the handling of unsigned integers (typeset -ui) has 1219da2e3ebdSchin been fixed. 1220da2e3ebdSchin01-06-04 The evaluation of the PS1 prompt no longer effects the value 1221da2e3ebdSchin of the $? variable. 1222da2e3ebdSchin01-06-01 A small memory leak from subshells has been fixed. 1223da2e3ebdSchin01-05-22 A bug in which attributes for variables that did not have 1224da2e3ebdSchin values would be lost after a subshell has been fixed. 1225da2e3ebdSchin01-05-22 The %R format has been added to convert a shell pattern into 1226da2e3ebdSchin an extended regular expression. 1227da2e3ebdSchin01-05-22 The escape sequences \e, \cX, \C[.collating-element.], and 1228da2e3ebdSchin \x{hex} have been added to ASCII-C strings and to printf format 1229da2e3ebdSchin strings. 1230da2e3ebdSchin01-05-20 Patterns of the form {n}(pattern) and {m,n}(pattern) are now 1231da2e3ebdSchin recognized. The first form matches exactly n of pattern whereas, 1232da2e3ebdSchin the second form matches from m to n instances of pattern. 1233da2e3ebdSchin01-05-20 The shell allows *-(pattern), +-(pattern), ?-(pattern), 1234da2e3ebdSchin {m,n}-(pattern}, and @-(pattern) to cause the minimal 1235da2e3ebdSchin match of pattern to be selected whenever possible rather 1236da2e3ebdSchin than the maximal (greedy) match. 1237da2e3ebdSchin01-05-20 The character class [:word:] has been added to patterns. 1238da2e3ebdSchin The word class is the union of [:alnum:] and the character _. 1239da2e3ebdSchin01-05-20 Inside (...) pattern groups, the \ character is now treated 1240da2e3ebdSchin specially even when in an enclosing character class. The 1241da2e3ebdSchin sequences, \w, \d, \s are equivalent to the character classes 1242da2e3ebdSchin word, digit, and space respectively. The sequences \W, \D, 1243da2e3ebdSchin and \S are their complement sets. 1244da2e3ebdSchin01-05-20 The shell now recognizes pattern groups of the form 1245da2e3ebdSchin ~(options:pattern) where options or :pattern can be omitted. 1246da2e3ebdSchin Options use the letters + and - to enable and disable options 1247da2e3ebdSchin respectively. The option letters g (greedy), i (ignore case) 1248da2e3ebdSchin are used to cause maximal matching and to cause case 1249da2e3ebdSchin insensitive matching respectively. If :pattern is also 1250da2e3ebdSchin specified, these options are only in effect while this 1251da2e3ebdSchin pattern is being processed. Otherwise, these options remain 1252da2e3ebdSchin in effect until the end of the pattern group that they are contained 1253da2e3ebdSchin in or until another ~(...) is encountered. These pattern groups 1254da2e3ebdSchin are not counted with respect to group numbering. 1255da2e3ebdSchin01-05-14 When edit completion, expansion, or listing occurs in the 1256da2e3ebdSchin middle of a quoted string, the leading quote is ignored when 1257da2e3ebdSchin performing the completion, expansion, or listing. 1258da2e3ebdSchin01-05-14 A small memory leak from subshells has been fixed. 1259da2e3ebdSchin01-05-10 A bug in which open files were not restored after a subshell 1260da2e3ebdSchin that had used exec to replace a file has been fixed. 1261da2e3ebdSchin01-05-10 Redirection to a null file name now generates an error message. 1262da2e3ebdSchin01-05-09 The shell now rejects some invalid parameter substitutions that 1263da2e3ebdSchin were previously processed in undefined ways. 1264da2e3ebdSchin01-05-09 A bug in which the output of select was not flushed before the 1265da2e3ebdSchin read when input did not come from the terminal has been fixed. 1266da2e3ebdSchin01-05-08 A bug in which job ids would not be freed for interactive shells 1267da2e3ebdSchin when subshells ran built-ins in the background has been fixed. 1268da2e3ebdSchin01-05-08 The FPATH variable now requires an explicit . to cause the 1269da2e3ebdSchin current directory to be treated as a function directory. 1270da2e3ebdSchin01-05-08 A bug in read -n when echo mode was disabled has been fixed. 1271da2e3ebdSchin01-05-07 A bug in which function definitions could be listed as part 1272da2e3ebdSchin of the history has been fixed. 1273da2e3ebdSchin01-04-30 This release uses a new and often much faster pattern matcher than 1274da2e3ebdSchin earlier releases. 1275da2e3ebdSchin01-04-30 An optimizer now eliminates invariant parameter expansions from 1276da2e3ebdSchin for while and until loops. 1277da2e3ebdSchin01-04-30 The variable .sh.match is set after each pattern match (# % or /) 1278da2e3ebdSchin in a variable substitution. The variable .sh.match is an 1279da2e3ebdSchin indexed array with element 0 being the complete match. 1280da2e3ebdSchin The array is only valid until the next subsequent pattern 1281da2e3ebdSchin match or until the value of the variable changes which ever 1282da2e3ebdSchin comes first. 1283da2e3ebdSchin01-04-30 A self generating man page has been added to shcomp. Also, 1284da2e3ebdSchin shcomp now stops compiling when it finds an exit or exec 1285da2e3ebdSchin command and copies the remainder so that it can be used 1286da2e3ebdSchin for standard input. 1287da2e3ebdSchin01-04-30 The shcomp command was modified so that it can work in an 1288da2e3ebdSchin EBCIDIC environment and that binary scripts are portable 1289da2e3ebdSchin across environments. 1290da2e3ebdSchin01-04-30 A bug in the handling of a trailing : in PATH has been fixed. 1291da2e3ebdSchin01-04-30 A bug in which the builtin version of a command would get invoked 1292da2e3ebdSchin even though the full pathname for the command was specified 1293da2e3ebdSchin has been fixed. 1294da2e3ebdSchin01-04-30 A bug in which read would loose the last character when 1295da2e3ebdSchin reading the last line of a file that did not contain a new-line 1296da2e3ebdSchin character has been fixed. 1297da2e3ebdSchin01-04-23 A bug on some systems in which in vi mode the end of file 1298da2e3ebdSchin character and end of line character could be swapped has 1299da2e3ebdSchin been fixed. 1300da2e3ebdSchin01-04-23 A bug on some systems in which invoking a shell script that 1301da2e3ebdSchin did not have execute permission could set the exit value to 1302da2e3ebdSchin 127 rather than 126 has been fixed. 1303da2e3ebdSchin01-04-20 A bug in which read -n from a pipe would block if fewer than 1304da2e3ebdSchin n characters was received has been fixed. 1305da2e3ebdSchin01-04-09 A bug in which invalid patterns, for example, ) by itself, 1306da2e3ebdSchin was not treated as a string has been fixed so that if i=')', 1307da2e3ebdSchin then [[ $i == $i ]] is true. 1308da2e3ebdSchin01-04-09 The shell arithmetic now interprets C character constants. 1309da2e3ebdSchin01-04-09 A bug in which a non-zero return from a function defined 1310da2e3ebdSchin with the function reserved word did not trigger the ERR 1311da2e3ebdSchin trap or exit with set -e has been fixed. 1312da2e3ebdSchin01-04-02 A bug on some systems, in which characters above 127 were 1313da2e3ebdSchin not displayed correctly in vi or emacs edit mode has been fixed. 1314da2e3ebdSchin01-04-02 A bug on some systems, introduced in the 'k' point release, in 1315da2e3ebdSchin which the erase character in viraw mode was moving the cursor 1316da2e3ebdSchin to the left without erasing the character has been fixed. 1317da2e3ebdSchin01-04-02 On some systems the wcwith() function was returning a wrong 1318da2e3ebdSchin value for characters and caused characters to be displayed 1319da2e3ebdSchin incorrectly from the shell edit modes. A work around for 1320da2e3ebdSchin this problem has been added. 1321da2e3ebdSchin01-03-26 A bug in which valid scripts could produce syntax errors 1322da2e3ebdSchin when run with locales that considered characters such as "'" 1323da2e3ebdSchin to be space characters has been fixed. 1324da2e3ebdSchin01-03-20 A bug in which an syntax error in an arithmetic expression 1325da2e3ebdSchin entered interactively could cause the shell to go into 1326da2e3ebdSchin an infinite loop outputting the error message has been fixed. 1327da2e3ebdSchin01-03-10 ksh93 accepts -l as a synonym for -L in test on systems for 1328da2e3ebdSchin which /bin/test -l tests for symbolic links. 1329da2e3ebdSchin01-03-10 A bug in parsing scripts in which { and } are used in place of 1330da2e3ebdSchin in and esac in case statements embedded in compound commands 1331da2e3ebdSchin has been fixed. Use of { and } for in and esac is obsolete. 1332da2e3ebdSchin01-03-06 A bug in which an argument of the form foo=bar was not 1333da2e3ebdSchin being passed correctly to a traced function whose name 1334da2e3ebdSchin was foo has been fixed. 1335da2e3ebdSchin01-03-02 Using $(trap -p name) did not print the name of the current 1336da2e3ebdSchin trap setting for trap name. 1337da2e3ebdSchin01-02-26 Exported floating point variables gave incorrect results 1338da2e3ebdSchin when passing them to ksh88. This has been fixed. 1339da2e3ebdSchin01-02-25 A race condition in which a coprocess which completed too quickly 1340da2e3ebdSchin would not allow subsequent coprocesses to start has been fixed. 1341da2e3ebdSchin01-02-25 The 'g' format specifier is now handled by printf. It had 1342da2e3ebdSchin inadvertently been omitted. 1343da2e3ebdSchin01-02-20 The + was not being displayed during an execution trace 1344da2e3ebdSchin with the += assignment operator. 1345da2e3ebdSchin01-02-19 The error message which occurs when the interpreter name 1346da2e3ebdSchin defined on the #! line does not exist is more informative. 1347da2e3ebdSchin01-02-19 A bug in which $0 would not be set correctly when a 1348da2e3ebdSchin script with #! was invoked by full pathname from the 1349da2e3ebdSchin directory of the script has been fixed. 1350da2e3ebdSchin01-02-19 A shell script did not always pick up tty mode changes 1351da2e3ebdSchin made by external commands such as stty which could 1352da2e3ebdSchin effect the behavior of read. 1353da2e3ebdSchin01-02-19 The -u, -g, and -k unary tests did not give the correct 1354da2e3ebdSchin results when used with negation and this has been fixed. 1355da2e3ebdSchin 1356da2e3ebdSchin01-02-05 --- Release ksh93k+ --- 1357da2e3ebdSchin01-02-05 The sequence \<newline> inside $'...' was not incrementing 1358da2e3ebdSchin the line count and this has been fixed. 1359da2e3ebdSchin01-02-05 Modified expansion of "${@-}" so that if no arguments are set 1360da2e3ebdSchin it results in null string rather than nothing. 1361da2e3ebdSchin01-02-02 memory leak problem with local variables in functions fixed. 1362da2e3ebdSchin01-01-25 allow arithmetic expressions with float%int and treat them 1363da2e3ebdSchin as ((int)float)%int rather than as an error. 1364da2e3ebdSchin01-01-19 read -n1 was not working and has been fixed. 1365da2e3ebdSchin01-01-17 ksh now handles the case in which a here document in command 1366da2e3ebdSchin substitution $() is terminated by the trailing ). Previously, 1367da2e3ebdSchin a new-line was needed at the end of the delimiter word. 1368da2e3ebdSchin01-01-02 A bug in which a KEYBD trap would cause a multi-line token 1369da2e3ebdSchin to be processed incorrectly has been fixed. 1370da2e3ebdSchin00-12-10 Arithmetic integer constants can now have L and U suffices. 1371da2e3ebdSchin00-12-10 A bug in the processing of arithmetic expressions with compound 1372da2e3ebdSchin variables when the -n option is on has been fixed. 1373da2e3ebdSchin00-12-08 A bug in M-f and M-b from emacs mode has been fixed. This 1374da2e3ebdSchin bug only occurs when ksh93 is compiled without MULTIBYTE enabled. 1375da2e3ebdSchin00-11-29 A bug in which jobs -p would yield 0 for background 1376da2e3ebdSchin jobs run in a script has been fixed. 1377da2e3ebdSchin00-11-21 A bug in integer arrays in which the number of elements is 1378da2e3ebdSchin incorrect when the ++ operator is applied to a non-existing 1379da2e3ebdSchin element has been fixed. For example, integer x; ((x[3]++)). 1380da2e3ebdSchin00-11-20 A timing bug in which the shell could reset the terminal 1381da2e3ebdSchin group to the wrong value in the case that the a new process 1382da2e3ebdSchin changes the terminal group during startup has been fixed. 1383da2e3ebdSchin 1384da2e3ebdSchin00-10-27 --- Release ksh93k --- 1385da2e3ebdSchin00-10-27 Using tab for completion now works only when applied 1386da2e3ebdSchin after a non-blank character at the end of the current line. 1387da2e3ebdSchin In other case a tab is inserted. 1388da2e3ebdSchin00-10-27 A bug in the emacs edit mode for ^X^E has been fixed. 1389da2e3ebdSchin The ^X^E sequence is supposed to invoke the full editor 1390da2e3ebdSchin on the current command. 1391da2e3ebdSchin00-10-18 A bug in which expansions of the form ${var//pattern/string} 1392da2e3ebdSchin did not work correctly when pattern was '/' or "/" has 1393da2e3ebdSchin been fixed. 1394da2e3ebdSchin00-10-18 The output format for indexed arrays in compound variables 1395da2e3ebdSchin has been modified so that it can be used as input. 1396da2e3ebdSchin00-10-18 Assignments with name references (typeset -n) will now 1397da2e3ebdSchin implicitly unreference an existing name reference. 1398da2e3ebdSchin00-10-17 A bug the += append operator when a single array element 1399da2e3ebdSchin is appended to a variable that is not an array has been fixed. 1400da2e3ebdSchin00-10-16 A bug in which the SIGCONT signal was being sent to 1401da2e3ebdSchin each process will kill -0 or kill -n 0 has been fixed. 1402da2e3ebdSchin00-10-12 The arithmetic evaluation portion has been rewritten to 1403da2e3ebdSchin perform a number of optimizations. 1404da2e3ebdSchin00-10-10 A bug in which name prefix matching ${!name.*} was not 1405da2e3ebdSchin checking name to see if it was a name reference has been fixed. 1406da2e3ebdSchin00-09-26 A bug in the multibyte version in which the width of for 1407da2e3ebdSchin non-printing characters was not correct has been fixed. 1408da2e3ebdSchin00-09-12 Made changes to get multibyte editing work on UWIN for windows 1409da2e3ebdSchin00-09-12 A bug in which multibyte characters would be displayed incorrectly 1410da2e3ebdSchin has been fixed. 1411da2e3ebdSchin00-08-08 Removed build dependency on iswprint() and iswalph(). 1412da2e3ebdSchin00-07-20 In some cases the read builtin would read more than a single 1413da2e3ebdSchin line from a pipe on standard input and therefore leave the seek 1414da2e3ebdSchin position in the wrong location. 1415da2e3ebdSchin00-07-05 If the directory / is on the path, a / will not be inserted 1416da2e3ebdSchin between the directory and the file name during path searching 1417da2e3ebdSchin to avoid searching // for systems that treat this specially. 1418da2e3ebdSchin00-06-26 A bug in which on rare occasions wait could return before all 1419da2e3ebdSchin jobs have completed has been fixed. 1420da2e3ebdSchin00-06-21 A bug in which backspace did not work correctly during the 1421da2e3ebdSchin R replace directive in vi-mode has been fixed. 1422da2e3ebdSchin00-06-12 Added variable name completion/expansion/listing to the set of 1423da2e3ebdSchin completions. Variable name completions begin with $ or "$ followed 1424da2e3ebdSchin by a letter. 1425da2e3ebdSchin00-05-09 --- Release ksh93j --- 1426da2e3ebdSchin00-05-09 Modified command substitution to avoid using /tmp files when 1427da2e3ebdSchin run on read-only file systems. 1428da2e3ebdSchin00-04-17 Modified printf to handle '%..Xc' and '%..Xs' options where X 1429da2e3ebdSchin is not an alpha character. Previous versions core dumped with this. 1430da2e3ebdSchin00-04-10 Changes to multibyte editing code were made to use standard 1431da2e3ebdSchin ISO C functions rather than methods devised before the standard. 1432da2e3ebdSchin00-04-09 Add %H options to printf to output strings with <"'&\t> properly 1433da2e3ebdSchin converted for use in HTML and XML documents. 1434da2e3ebdSchin00-04-07 Modified getopts builtin to handle \f...\f in usage string 1435da2e3ebdSchin by invoking specified function. 1436da2e3ebdSchin00-04-04 Added self generating man pages for bg, fc, fg, disown, jobs, 1437da2e3ebdSchin hist, let, ., and ulimit. 1438da2e3ebdSchin00-03-30 The append operator += has been added and can be used 1439da2e3ebdSchin for all assignments, strings, arrays, and compound variables. 1440da2e3ebdSchin00-03-30 Code was modified in several places to support automatic 1441da2e3ebdSchin generation of C locale dictionaries. 1442da2e3ebdSchin00-03-28 A bug in which the set and trap commands invoked with --name 1443da2e3ebdSchin type arguments would terminate the invoking script has 1444da2e3ebdSchin been fixed. 1445da2e3ebdSchin00-03-27 A bug in which the library path variable was not updated 1446da2e3ebdSchin correctly on some systems as described in the 'g' point 1447da2e3ebdSchin release has been fixed. 1448da2e3ebdSchin00-03-07 printf now returns a non-zero exit status when one of 1449da2e3ebdSchin its arguments cannot be converted to the given type. 1450da2e3ebdSchin00-03-05 The return value and error message for a command that 1451da2e3ebdSchin was found on the path but was not executable was set 1452da2e3ebdSchin incorrectly. 1453da2e3ebdSchin00-03-05 A prototype for ioctl() was removed from the vi edit mode. 1454da2e3ebdSchin 1455da2e3ebdSchin00-01-28 --- Release ksh93i --- 1456da2e3ebdSchin00-01-28 Most of the built-in commands and ksh itself are now 1457da2e3ebdSchin self documenting. Running command --man will produce 1458da2e3ebdSchin screen output. Running command --html produces the 1459da2e3ebdSchin man page in html format. 1460da2e3ebdSchin00-01-28 The getopts builtin can process command description 1461da2e3ebdSchin strings to produce man pages. 1462da2e3ebdSchin00-01-28 A bug in which a script could terminate when getopts 1463da2e3ebdSchin encountered an error when invoked inside a function 1464da2e3ebdSchin has been fixed. 1465da2e3ebdSchin00-01-28 When a symbolic link was specified as the name of 1466da2e3ebdSchin the script to invoke by name, the value of $0 was 1467da2e3ebdSchin set to the real file name rather than the link name 1468da2e3ebdSchin in some cases and this has been fixed. 1469da2e3ebdSchin00-01-28 A bug in which the precision given as an argument 1470da2e3ebdSchin to printf was not working has been fixed. 1471da2e3ebdSchin 1472da2e3ebdSchin99-03-31 --- Release ksh93h --- 1473da2e3ebdSchin99-03-31 The PATH search algorithm has been modified to look 1474da2e3ebdSchin for a file named .fpath in each bin directory and if 1475da2e3ebdSchin found, to search for functions in this directory if 1476da2e3ebdSchin it cannot find the command in that directory. 1477da2e3ebdSchin99-03-31 When performing pathname expansion, the shell checks 1478da2e3ebdSchin to see whether each directory it reads is case sensitive 1479da2e3ebdSchin or not, and performs the matching accordingly. 1480da2e3ebdSchin99-03-31 The %T format for printing formatted date/time. 1481da2e3ebdSchin99-03-31 The emacs and vi modes now handle arrow keys when 1482da2e3ebdSchin they use standard ANSI escape sequences. 1483da2e3ebdSchin99-03-31 The TAB key can be used for completion in emacs and viraw mode. 1484da2e3ebdSchin99-03-31 A bug in setting .sh.editchar during the KEYBD trap 1485da2e3ebdSchin for the MULTIBYTE option was fixed in release ksh93h. 1486da2e3ebdSchin99-03-31 A bug in shcomp for compilation of unary operators with [[...]] 1487da2e3ebdSchin has been fixed. 1488da2e3ebdSchin99-03-31 A bug in which the value of $? was changed when executing 1489da2e3ebdSchin a keyboard trap has been fixed. 1490da2e3ebdSchin99-03-31 The handling of SIGCHLD has been changed so that the 1491da2e3ebdSchin trap is not triggered while executing trap commands 1492da2e3ebdSchin to avoid recursive trap calls. 1493da2e3ebdSchin99-03-31 A bug in which a local variable in a function declared readonly 1494da2e3ebdSchin would generated an error when the function went out of 1495da2e3ebdSchin scope has been fixed. 1496da2e3ebdSchin99-03-31 A bug in which \<new_line> entered from the keyboard 1497da2e3ebdSchin with the KEYBD trap enabled has been fixed. 1498da2e3ebdSchin99-03-31 The error message for a misplaced ((, for example print ((3), 1499da2e3ebdSchin was often garbled and has been fixed. 1500da2e3ebdSchin99-03-31 A bug in the KEYBD trap in which escape sequences of the form 1501da2e3ebdSchin <ESC>[#~ were not being handled as a unit has been fixed. 1502da2e3ebdSchin99-03-31 A bug in which ksh would consider expressions like [[ (a) ]] 1503da2e3ebdSchin as syntax errors has been fixed. 1504da2e3ebdSchin99-03-31 A function defined as foo() without a function body 1505da2e3ebdSchin was not reported as a syntax error. 1506da2e3ebdSchin99-03-31 A bug in which ksh could run out of file descriptors when 1507da2e3ebdSchin a stream was repeatedly opened with exec and read from 1508da2e3ebdSchin has been fixed. 1509da2e3ebdSchin 1510da2e3ebdSchin98-04-30 --- Release ksh93g --- 1511da2e3ebdSchin98-04-30 The pipefail option has been added. With pipefail 1512da2e3ebdSchin enabled, a pipeline will not complete until all 1513da2e3ebdSchin commands are complete, and the return value will 1514da2e3ebdSchin be that of the last command to fail, or zero if 1515da2e3ebdSchin all complete successfully. 1516da2e3ebdSchin98-04-30 The name-value pair library uses the cdt library rather 1517da2e3ebdSchin than the hash library. This change should be transparent 1518da2e3ebdSchin to applications. 1519da2e3ebdSchin98-04-30 On the U/WIN version for Window 95 and Windows NT, 1520da2e3ebdSchin when a directory beginning with a letter followed by 1521da2e3ebdSchin a colon is given to cd, it is assumed to be an absolute 1522da2e3ebdSchin directory 1523da2e3ebdSchin98-04-30 When an executable is found on a given path, 1524da2e3ebdSchin the appropriate library path variable is prepended 1525da2e3ebdSchin with a corresponding library directory. 1526da2e3ebdSchin98-04-30 A bug in which a name reference could be created to 1527da2e3ebdSchin itself and later cause the shell to get into an infinite 1528da2e3ebdSchin loop has been fixed. 1529da2e3ebdSchin98-04-30 A bug in shcomp relating to compound variables was fixed. 1530da2e3ebdSchin98-04-30 A bug introduced in ksh93e in which leading 0's in -Z 1531da2e3ebdSchin fields caused the value to be treated as octal for arithmetic 1532da2e3ebdSchin evaluation has been fixed. 1533da2e3ebdSchin98-04-30 A bug when a name reference with a shorter name than 1534da2e3ebdSchin the variable it references was the subject of a compound 1535da2e3ebdSchin assignment has been fixed. 1536da2e3ebdSchin98-04-30 A bug which in which assignment to array variables in 1537da2e3ebdSchin a subshell could effect the parent shell has been 1538da2e3ebdSchin fixed. 1539da2e3ebdSchin98-04-30 read name?prompt was putting a 0 byte at the end of the 1540da2e3ebdSchin prompt on standard error. 1541da2e3ebdSchin98-04-30 A bug in [[ string1 > string2 ]] when ksh was run with -x 1542da2e3ebdSchin has been fixed. 1543da2e3ebdSchin98-04-30 A bug in which the escape character was not processed 1544da2e3ebdSchin correctly inside {...} when brace expansion is enabled 1545da2e3ebdSchin has been fixed, for example {\$foo}. 1546da2e3ebdSchin98-04-30 A bug in line continuation in here-documents has been 1547da2e3ebdSchin fixed. 1548da2e3ebdSchin98-04-30 The default base when not specified with typeset -i is 1549da2e3ebdSchin 10 in accordance with the documentation. Previously, 1550da2e3ebdSchin the value was determined by the first assignment. 1551da2e3ebdSchin98-04-30 A parsing bug in which a # preceded alphanumeric 1552da2e3ebdSchin characters inside a command substitution caused 1553da2e3ebdSchin a syntax error to be reported has been fixed. 1554da2e3ebdSchin98-04-30 A bug in which a decimal constant represented as 10#ddd 1555da2e3ebdSchin where ddd was more than five digits generated a syntax 1556da2e3ebdSchin error has been fixed. 1557da2e3ebdSchin98-04-30 A bug in here document expansion in which ${...} expansions 1558da2e3ebdSchin were split across buffer boundaries has been fixed. 1559da2e3ebdSchin98-04-30 The sh_fun() function now takes third argument which 1560da2e3ebdSchin is an argument list for the invoked discipline function 1561da2e3ebdSchin or built-in. 1562da2e3ebdSchin98-04-30 A callback function can be installed which will give 1563da2e3ebdSchin notification of file duplications and file closes. 1564da2e3ebdSchin98-04-30 When ksh is compiled on systems that do not use fork() 1565da2e3ebdSchin current option settings where not propagated to sub-shells. 1566da2e3ebdSchin 1567da2e3ebdSchin97-06-30 --- Release ksh93f --- 1568da2e3ebdSchin97-06-30 Hostnames in addition to host addresses can be given in 1569da2e3ebdSchin /dev/tcp/host/port virtual file names. 1570da2e3ebdSchin97-06-30 File name completion and expansion now quotes special 1571da2e3ebdSchin characters in file names from both emacs and vi edit modes. 1572da2e3ebdSchin97-06-30 An empty for list behave like a for list with null expansions. 1573da2e3ebdSchin It produces a warning message with sh -n. 1574da2e3ebdSchin97-06-30 The code has been modified to work with EBCDIC as well as ASCII. 1575da2e3ebdSchin97-06-30 A bug which would cause the secondary prompt to be 1576da2e3ebdSchin displayed when a user entered a literal carriage 1577da2e3ebdSchin return has been fixed. 1578da2e3ebdSchin97-06-30 A bug which caused ksh read -s name to core dump was 1579da2e3ebdSchin fixed. 1580da2e3ebdSchin97-06-30 A bug with the expansion of \} and \] inside double 1581da2e3ebdSchin quoted strings that also contained variable expansions 1582da2e3ebdSchin has been fixed 1583da2e3ebdSchin97-06-30 Changes in the ksh93e point release caused autoload 1584da2e3ebdSchin functions invoked from within command substitution 1585da2e3ebdSchin to fail. This has been fixed. 1586da2e3ebdSchin97-06-30 A bug in the processing of here-documents that could 1587da2e3ebdSchin prevent variable substitution to occur after $(...) command 1588da2e3ebdSchin substitution for long here documents has been fixed. 1589da2e3ebdSchin97-06-30 A bug caused by a race condition that could cause SIGTERM 1590da2e3ebdSchin to be ignored by a child process has been fixed. 1591da2e3ebdSchin97-06-30 A bug which prevented the startup of a coprocess immediately 1592da2e3ebdSchin after killing a running coprocess has been fixed. 1593da2e3ebdSchin97-06-30 ulimit foobar, where foobar is not an arithmetic 1594da2e3ebdSchin expression, now gives an error message as it did with ksh88 1595da2e3ebdSchin instead of setting the file size limit to 0. 1596da2e3ebdSchin97-06-30 A bug which could cause an interactive shell to terminate when 1597da2e3ebdSchin the last process of a pipeline was a POSIX function was fixed. 1598da2e3ebdSchin97-06-30 A bug which could cause command substitution of a shell script 1599da2e3ebdSchin to core dump has been fixed. 1600da2e3ebdSchin97-06-30 A security hole was fixed in suid_exec. 1601da2e3ebdSchin97-06-30 Arithmetic functions such as pow() that take more than 1602da2e3ebdSchin one argument, did not work if arguments other than the 1603da2e3ebdSchin first contained parenthesized sub-expression. 1604da2e3ebdSchin97-06-30 The error message from a script containing an incomplete 1605da2e3ebdSchin arithmetic expression has been corrected. 1606da2e3ebdSchin97-06-30 A bug which caused a core dump on some machines when 1607da2e3ebdSchin the value of a name reference contained a positional 1608da2e3ebdSchin parameter and the name reference was not defined inside 1609da2e3ebdSchin a function has been fixed. 1610da2e3ebdSchin97-06-30 Arithmetic expressions now correctly handle hexadecimal 1611da2e3ebdSchin constants. 1612da2e3ebdSchin97-06-30 A bug in which integer variables could be expanded 1613da2e3ebdSchin with a leading 10# when declared with typeset -i 1614da2e3ebdSchin multiple times has been corrected. 1615da2e3ebdSchin97-06-30 A bug in which IFS wasn't correctly restored when 1616da2e3ebdSchin set within command substitution has been fixed. 1617da2e3ebdSchin97-06-30 The _ character is now considered as part of a word 1618da2e3ebdSchin with the M-f and M-b emacs directives as it was in ksh88. 1619da2e3ebdSchin97-06-30 A bug in brace pattern expansions that caused expressions 1620da2e3ebdSchin such as {foo\,bar,bam} to expand incorrectly have been fixed. 1621da2e3ebdSchin 1622da2e3ebdSchin 1623da2e3ebdSchin96-07-31 --- Release ksh93e --- 1624da2e3ebdSchin96-07-31 The math functions, atan2, hypot, fmod, and pow were added. 1625da2e3ebdSchin96-07-31 When a shared library is loaded, if the function lib_init() 1626da2e3ebdSchin is defined in the library, it is invoked the first time that 1627da2e3ebdSchin the library is loaded with builtin -f library. 1628da2e3ebdSchin96-07-31 The k-shell information abstraction database option, KIA, 1629da2e3ebdSchin has been revamped. 1630da2e3ebdSchin96-07-31 Empty command substitutions of the form $() now work. 1631da2e3ebdSchin whence -v foo now gives the correct result after calling 1632da2e3ebdSchin builtin -d foo. 1633da2e3ebdSchin96-07-31 A bug in right to left arithmetic assignment for which 1634da2e3ebdSchin the arithmetic expression (( y = x = 1.5 )) did not 1635da2e3ebdSchin yield 1 for y when x was declared typeset -i was fixed. 1636da2e3ebdSchin96-07-31 printf has been fixed to handle format containing \0 1637da2e3ebdSchin and/or \0145 correctly. In addition, characters following 1638da2e3ebdSchin %b in the format string are no longer displayed when 1639da2e3ebdSchin the operand contains \c. 1640da2e3ebdSchin96-07-31 A bug in printf that could cause the %E format to 1641da2e3ebdSchin produce unnormalized results has been fixed. 1642da2e3ebdSchin96-07-31 A bug which causes some arithmetic expressions to be 1643da2e3ebdSchin incorrectly evaluated as integer expressions rather 1644da2e3ebdSchin that floating point has been fixed. 1645da2e3ebdSchin96-07-31 Functions defined inside a subshell no longer remain 1646da2e3ebdSchin defined when the subshell completes. 1647da2e3ebdSchin96-07-31 The error message from sh -c ';echo foo' has been 1648da2e3ebdSchin corrected. 1649da2e3ebdSchin96-07-31 The format for umask -S has been changed to agree 1650da2e3ebdSchin with the specification in the POSIX standard. 1651da2e3ebdSchin96-07-31 A bug that caused side effects in subscript evaluation 1652da2e3ebdSchin when tracing was enabled for subscripts using ++ or -- 1653da2e3ebdSchin has been fixed. 1654da2e3ebdSchin96-07-31 To conform to the Posix standard getopts has been changed 1655da2e3ebdSchin so that the option char is set to ? when it returns with 1656da2e3ebdSchin a non-zero exit status. 1657da2e3ebdSchin96-07-31 The handling of \} inside ${name...} has been fixed so 1658da2e3ebdSchin that the \ quotes the }. 1659da2e3ebdSchin96-07-31 A bug that caused the read builtin to resume execution 1660da2e3ebdSchin after processing a trap has been fixed. 1661da2e3ebdSchin96-07-31 [[ -s file ]] has been fixed so that if file is open 1662da2e3ebdSchin by ksh, it is flushed first. 1663da2e3ebdSchin96-07-31 In some cases attributes and sizes for non exported 1664da2e3ebdSchin variables weren't being reset before running a script. 1665da2e3ebdSchin96-07-31 The value of TMOUT was affected by changes make to 1666da2e3ebdSchin it in a subshell. 1667da2e3ebdSchin96-07-31 The jobs command did not reflect changes make by 1668da2e3ebdSchin sending the CONT signal to a command. 1669da2e3ebdSchin96-07-31 The error message for ksh -o unknown was incorrect. 1670da2e3ebdSchin96-07-31 Functions invoked as name=value name, did not use 1671da2e3ebdSchin values from the calling scope when evaluating value. 1672da2e3ebdSchin96-07-31 A bug in which the shell would reexecute previously 1673da2e3ebdSchin executed code when a shell script or coprocess was 1674da2e3ebdSchin run in the background has been fixed. 1675da2e3ebdSchin96-07-31 A bug in which an empty here-document would leave 1676da2e3ebdSchin a file descriptor open has been fixed. 1677da2e3ebdSchin96-07-31 A bug in which $(set -A array ...) would leave a 1678da2e3ebdSchin side effect has been fixed. 1679da2e3ebdSchin96-07-31 A discipline function for a global variable defined 1680da2e3ebdSchin within a function defined with the function keyword, 1681da2e3ebdSchin incorrectly created a local variable of the same name 1682da2e3ebdSchin and applied the discipline to it. 1683da2e3ebdSchin 1684da2e3ebdSchin95-08-28 --- Release ksh93d --- 1685da2e3ebdSchin95-08-28 The \ character was not handled correctly in replacement 1686da2e3ebdSchin patterns with ${x/pattern/replace}. 1687da2e3ebdSchin95-08-28 A bug with read in which the line did not end with 1688da2e3ebdSchin a new-line has been fixed. 1689da2e3ebdSchin95-08-28 A bug in file name generation which sometimes 1690da2e3ebdSchin appended a . for filenames that ended in / has 1691da2e3ebdSchin been fixed. 1692da2e3ebdSchin95-08-28 If a process is waited for after a status has 1693da2e3ebdSchin been returned by a previous wait, wait now 1694da2e3ebdSchin returns 127. 1695da2e3ebdSchin95-08-28 A bug with hist (fc) -e which prevented a command 1696da2e3ebdSchin to re-executed after it had been edited has been fixed. 1697da2e3ebdSchin95-08-28 A bug which prevented quoting from removing the meaning 1698da2e3ebdSchin of unary test operators has been fixed. 1699da2e3ebdSchin95-08-28 A bug with typeahead and KEYBOARD traps with the 1700da2e3ebdSchin MULTIBYTE option set has been fixed. 1701da2e3ebdSchin95-08-28 Builtin functions can take a third argument which is 1702da2e3ebdSchin a void*. 1703da2e3ebdSchin95-08-28 The nv_scan() function can restrict the scope of a walk 1704da2e3ebdSchin to the top scope. 1705da2e3ebdSchin 1706da2e3ebdSchin95-04-31 --- Release ksh93c --- 1707da2e3ebdSchin95-04-31 The expansion of "$@" was incorrect when $1 was the null 1708da2e3ebdSchin string. 1709da2e3ebdSchin95-04-31 A bug which could incorrectly report a syntax error in 1710da2e3ebdSchin a backquoted expression when a $ was preceded by \\ 1711da2e3ebdSchin has been fixed. 1712da2e3ebdSchin95-04-31 A bug which prevented the shell from exiting after 1713da2e3ebdSchin reporting an error when failing to open a script 1714da2e3ebdSchin has been fixed. 1715da2e3ebdSchin95-04-31 A bug that could lead to memory corruption when a 1716da2e3ebdSchin large here document that required parameter or command 1717da2e3ebdSchin substitution was expanded has been fixed. 1718da2e3ebdSchin95-04-31 A bug that could cause a core dump on some systems 1719da2e3ebdSchin after ksh detected an error when reading a function 1720da2e3ebdSchin has been fixed. 1721da2e3ebdSchin95-04-31 A bug which could cause a coprocess to hang when 1722da2e3ebdSchin reading from a process that has terminated has been fixed. 1723da2e3ebdSchin95-04-31 A bug which caused a script to terminate when set -e 1724da2e3ebdSchin was on and the first command of and && or || list 1725da2e3ebdSchin failed has been fixed. 1726da2e3ebdSchin95-04-31 A bug with here documents inside $(...) when the delimiter 1727da2e3ebdSchin word is an identifier has been fixed. 1728da2e3ebdSchin95-04-31 A bug which caused $0 to display the wrong value when 1729da2e3ebdSchin a script was invoked as an argument to the . command 1730da2e3ebdSchin and the eval command has been fixed. 1731da2e3ebdSchin95-04-31 A bug that could cause the built-in sleep to hang 1732da2e3ebdSchin has been fixed. 1733da2e3ebdSchin95-04-31 A bug introduces in 12/28/93b which caused the backslash 1734da2e3ebdSchin to be removed when it was followed by digit inside double 1735da2e3ebdSchin quotes in some instances has been fixed. 1736da2e3ebdSchin95-04-31 A bug which could cause a core dump if ksh was invoked with 1737da2e3ebdSchin standard input closed has been fixed. 1738da2e3ebdSchin95-04-31 A bug which could cause a core dump if typeset -A was 1739da2e3ebdSchin specified for an existing variable has been fixed. 1740da2e3ebdSchin95-04-31 Variables that were unset but had attributes such as readonly 1741da2e3ebdSchin and export were not listed with readonly, export and typeset. 1742da2e3ebdSchin95-04-31 Several problems with signals have been fixed. 1743da2e3ebdSchin95-04-31 A bug which prevented ulimit -t from working has been fixed. 1744da2e3ebdSchin Also, a bug in which failed ulimits could cause a core dump 1745da2e3ebdSchin has also been fixed. 1746da2e3ebdSchin95-04-31 A bug in expansion of the form ${name/#pattern/string} and 1747da2e3ebdSchin ${name/%pattern/string} has been fixed. 1748da2e3ebdSchin95-04-31 A bug which caused read -r on a line that contained only 1749da2e3ebdSchin blanks to get a non-null value has been fixed. 1750da2e3ebdSchin95-04-31 A bug introduced in the 'a' point release in which 1751da2e3ebdSchin ${x='\\'} expanded to \ when x was unset has been fixed. 1752da2e3ebdSchin95-04-31 A bug which prevented a trap on EXIT from being executed 1753da2e3ebdSchin when the last command in a script was a function invocation 1754da2e3ebdSchin has been fixed. 1755da2e3ebdSchin95-04-31 A bug which caused an interactive shell ignore input when 1756da2e3ebdSchin standard error was redirected to a file with exec, 1757da2e3ebdSchin and then restored with exec 2>&1 has been fixed. 1758da2e3ebdSchin95-04-31 An interactive shell turns on monitor mode even when 1759da2e3ebdSchin standard error has been redirected to a file. 1760da2e3ebdSchin95-04-31 A bug which could cause standard input to be incorrectly 1761da2e3ebdSchin positioned for the last command of a script has been fixed. 1762da2e3ebdSchin95-04-31 A bug in the edit modes which allowed walking back in 1763da2e3ebdSchin the history file for more than HISTSIZE commands has 1764*7c2fbfb3SApril Chin been fixed. 1765da2e3ebdSchin95-04-31 A bug which could cause a core dump if variable TMPDIR was 1766da2e3ebdSchin changed between two command substitutions has been fixed. 1767da2e3ebdSchin95-04-31. A bug which prevented a trap on EXIT from being cleared 1768da2e3ebdSchin has been fixed. 1769da2e3ebdSchin95-04-31 A bug fixed for the v directive in vi MULTIBYTE has been 1770da2e3ebdSchin fixed. 1771da2e3ebdSchin95-04-31 Code to for IFS handling of multibyte characters has 1772da2e3ebdSchin been added. 1773da2e3ebdSchin95-04-31 The displaying of multibyte strings in export, readonly, 1774da2e3ebdSchin typeset, and execution traces has been fixed. 1775da2e3ebdSchin95-04-31 Variables inside functions are now statically scoped. 1776da2e3ebdSchin The previous behavior was never documented. 1777da2e3ebdSchin95-04-31 Variables inside functions are now statically scoped. 1778da2e3ebdSchin The previous behavior was never documented. 1779da2e3ebdSchin95-04-31 A few changes have been made to the name-value library 1780da2e3ebdSchin that affect built-ins that use disciplines. The 1781da2e3ebdSchin changes allow disciplines to be shared by variables 1782da2e3ebdSchin and should make it possible to add new disciplines 1783da2e3ebdSchin without recompilation. 1784da2e3ebdSchin95-04-31 The name-value library interface has undergone significant 1785da2e3ebdSchin change for this revision. See the new nval.3 man page. 1786da2e3ebdSchin 1787da2e3ebdSchin94-12-31 --- Release ksh93b --- 1788da2e3ebdSchin94-12-31 Variables inside functions are now statically scoped. 1789da2e3ebdSchin The previous behavior was never documented. 1790da2e3ebdSchin94-12-31 If IFS contains two consecutive identical characters belonging 1791da2e3ebdSchin to the [:space:] class, then this character is treated as 1792da2e3ebdSchin a non-space delimiter so that each instance will delimit 1793da2e3ebdSchin a field. For example, IFS=$'\t\t' will cause two consecutive 1794da2e3ebdSchin tabs to delimit a null field. 1795da2e3ebdSchin94-12-31 The getopts command has a -a name option that specifies a 1796da2e3ebdSchin name that will be used for usage messages. 1797da2e3ebdSchin94-12-31 A bug which caused unset RANDOM to dump core has been 1798da2e3ebdSchin fixed. 1799da2e3ebdSchin94-12-31 A bug which prevented return for terminating a profile 1800da2e3ebdSchin or ENV file has been fixed. 1801da2e3ebdSchin94-12-31 A bug which prevented standard input from being 1802da2e3ebdSchin directed to /dev/null for background jobs when 1803da2e3ebdSchin monitor mode was turned off has been fixed. 1804da2e3ebdSchin94-12-31 Statements of the form typeset -options var[expr]=value 1805da2e3ebdSchin did not perform substitutions on expr as expected. 1806da2e3ebdSchin94-12-31 A bug which prevented the shell from sending a HUP 1807da2e3ebdSchin signal to some background jobs that were not disowned 1808da2e3ebdSchin has been fixed. 1809da2e3ebdSchin94-12-31 A bug which allowed a script to trap signals that are 1810da2e3ebdSchin ignored at the time that the shell was invoked by exec 1811da2e3ebdSchin has been fixed. 1812da2e3ebdSchin94-12-31 A bug which could cause a core dump when a discipline 1813da2e3ebdSchin function was unset within a discipline was fixed. 1814da2e3ebdSchin94-12-31 The typeset builtin now accepts a first argument of 1815da2e3ebdSchin + or - for compatibility with ksh88. 1816da2e3ebdSchin94-12-31 For compatibility with ksh88, the results of expansions 1817da2e3ebdSchin of command arguments will treat the extended character 1818da2e3ebdSchin match characters ()|& as ordinary characters. 1819da2e3ebdSchin94-12-31 A bug which caused read to fail on a file that was 1820da2e3ebdSchin open for read/write with <> when the first operation 1821da2e3ebdSchin was print or printf has been fixed. 1822da2e3ebdSchin94-12-31 When a job is suspended, it is put on the top of 1823da2e3ebdSchin the job list as required by the POSIX standard. 1824da2e3ebdSchin94-12-31 The value of OPTARG when an option that required 1825da2e3ebdSchin an argument but didn't have one was incorrect in the 1826da2e3ebdSchin case the the option string began with a :. 1827da2e3ebdSchin94-12-31 A bug which caused the terminal to get into a bad 1828da2e3ebdSchin state with some KEYBD traps in vi-mode has been fixed. 1829da2e3ebdSchin94-12-31 A bug which caused an invalid trap to cause a script 1830da2e3ebdSchin to terminate, rather than just return an error, has 1831da2e3ebdSchin been fixed. 1832da2e3ebdSchin94-12-31 Backreferencing sub-expressions in patterns and replacement 1833da2e3ebdSchin strings now works. 1834da2e3ebdSchin94-12-31 A bug in chmod which caused the -R option to fail has 1835da2e3ebdSchin been fixed. 1836da2e3ebdSchin94-12-31 More signal names have been added for Solaris 1837da2e3ebdSchin 1838da2e3ebdSchin94-06-30 --- Release ksh93a --- 1839da2e3ebdSchin94-06-30 An expansion bug which causes portions of a word after 1840da2e3ebdSchin a $((...)) expansion that contains a nested $var expansion 1841da2e3ebdSchin to be lost has been fixed. 1842da2e3ebdSchin94-06-30 A bug that caused a core dump when a script that did not 1843da2e3ebdSchin have PWD set and did a cd inside command substitution 1844da2e3ebdSchin has been fixed. 1845da2e3ebdSchin94-06-30 A bug which caused a core dump on some machines when 1846da2e3ebdSchin the LANG variable was assigned to has been fixed. 1847da2e3ebdSchin94-06-30 A bug which incorrectly handled set disciplines that 1848da2e3ebdSchin performed arithmetic evaluation when the discipline 1849da2e3ebdSchin was called from the arithmetic evaluator has been fixed. 1850da2e3ebdSchin94-06-30 A bug caused by an EXIT trap inside a function that 1851da2e3ebdSchin was executed in a subshell was fixed. 1852da2e3ebdSchin94-06-30 If foo is a function, and not a program, then command foo 1853da2e3ebdSchin now reports that foo isn't found rather than invoking foo. 1854da2e3ebdSchin94-06-30 The previous version incorrectly listed -A as an 1855da2e3ebdSchin invocation option. The -A option is only for set. 1856da2e3ebdSchin94-06-30 A bug was fixed which caused ksh to loop when execution trace 1857da2e3ebdSchin was enabled and the PS4 prompt required command substitution. 1858da2e3ebdSchin94-06-30 A bug which could cause the job control switch character 1859da2e3ebdSchin to be disabled when a script that enabled monitor mode 1860da2e3ebdSchin terminated was fixed. 1861da2e3ebdSchin94-06-30 A bug in the macro expansion global replacement operator //, 1862da2e3ebdSchin when the pattern began with a [ or +( has been fixed. 1863da2e3ebdSchin94-06-30 A bug which prevented ~ expansion from occurring when 1864da2e3ebdSchin it was terminated with a colon inside an assignment 1865da2e3ebdSchin has been fixed. 1866da2e3ebdSchin94-06-30 A bug in the dot command which prevented autoload functions 1867da2e3ebdSchin from working has been fixed. 1868da2e3ebdSchin94-06-30 A bug which caused a variable to be unset if the 1869da2e3ebdSchin its value were expanded inside a set discipline has 1870da2e3ebdSchin been fixed. 1871da2e3ebdSchin94-06-30 Whence -a now longer reports that a defined function 1872da2e3ebdSchin is undefined. 1873da2e3ebdSchin94-06-30 A bug on some systems in which $0 would be incorrect 1874da2e3ebdSchin in scripts invoked by name has been fixed. 1875da2e3ebdSchin94-06-30 Here documents with an empty body now work. 1876da2e3ebdSchin94-06-30 A bug which disabled argument passing and resetting 1877da2e3ebdSchin of options for a script invoked by name inside a 1878da2e3ebdSchin function has been fixed. 1879da2e3ebdSchin94-06-30 A bug in which an EXIT trap set the caller of a function 1880da2e3ebdSchin would be executed if a command called inside a function 1881da2e3ebdSchin was not found has been fixed. 1882da2e3ebdSchin94-06-30 A bug which allowed a script to trap signals that are 1883da2e3ebdSchin ignored at the time that the shell was invoked has 1884da2e3ebdSchin been fixed. 1885da2e3ebdSchin94-06-30 A bug which caused 2<&1- when applied to a shell built-in 1886da2e3ebdSchin to leave standard input closed has been fixed. 1887da2e3ebdSchin94-06-30 A bug which caused the shell to incorrectly parse 1888da2e3ebdSchin $() command substitutions with nested case statements 1889da2e3ebdSchin has been fixed. 1890da2e3ebdSchin 1891