commit bash-20180928 snapshot

This commit is contained in:
Chet Ramey
2018-10-01 16:19:21 -04:00
parent 3d31a311da
commit 5fab8dbf24
22 changed files with 1116 additions and 1395 deletions
+12 -5
View File
@@ -5,12 +5,12 @@
.\" Case Western Reserve University
.\" chet.ramey@case.edu
.\"
.\" Last Change: Tue Aug 7 12:01:07 EDT 2018
.\" Last Change: Sat Sep 29 13:38:24 EDT 2018
.\"
.\" bash_builtins, strip all but Built-Ins section
.if \n(zZ=1 .ig zZ
.if \n(zY=1 .ig zY
.TH BASH 1 "2018 August 7" "GNU Bash 5.0"
.TH BASH 1 "2018 September 29" "GNU Bash 5.0"
.\"
.\" There's some problem with having a `@'
.\" in a tagged paragraph with the BSD man macros.
@@ -4409,12 +4409,12 @@ The levels are listed in order of decreasing precedence.
.B \fIid\fP++ \fIid\fP\-\-
variable post-increment and post-decrement
.TP
.B ++\fIid\fP \-\-\fIid\fP
variable pre-increment and pre-decrement
.TP
.B \- +
unary minus and plus
.TP
.B ++\fIid\fP \-\-\fIid\fP
variable pre-increment and pre-decrement
.TP
.B ! ~
logical and bitwise negation
.TP
@@ -9806,6 +9806,7 @@ command and, if necessary, updates the values of
and
.SM
.BR COLUMNS .
This option is enabled by default.
.TP 8
.B cmdhist
If set,
@@ -10105,6 +10106,12 @@ If set, local variables inherit the value and attributes of a variable of
the same name that exists at a previous scope before any new value is
assigned. The nameref attribute is not inherited.
.TP 8
.B localvar_unset
If set, calling \fBunset\fP on local variables in previous function scopes
marks them so subsequent lookups find them unset until that function
returns. This is identical to the behavior of unsetting local variables
at the current function scope.
.TP 8
.B login_shell
The shell sets this option if it is started as a login shell (see
.SM
+7
View File
@@ -5171,6 +5171,7 @@ The shell always postpones exiting if any jobs are stopped.
If set, Bash checks the window size after each external (non-builtin)
command and, if necessary, updates the values of
@env{LINES} and @env{COLUMNS}.
This option is enabled by default.
@item cmdhist
If set, Bash
@@ -5409,6 +5410,12 @@ If set, local variables inherit the value and attributes of a variable of
the same name that exists at a previous scope before any new value is
assigned. The @var{nameref} attribute is not inherited.
@item localvar_unset
If set, calling @code{unset} on local variables in previous function scopes
marks them so subsequent lookups find them unset until that function
returns. This is identical to the behavior of unsetting local variables
at the current function scope.
@item login_shell
The shell sets this option if it is started as a login shell
(@pxref{Invoking Bash}).
+3 -3
View File
@@ -2,10 +2,10 @@
Copyright (C) 1988-2018 Free Software Foundation, Inc.
@end ignore
@set LASTCHANGE Tue Aug 7 12:01:22 EDT 2018
@set LASTCHANGE Sat Sep 29 13:41:44 EDT 2018
@set EDITION 5.0
@set VERSION 5.0
@set UPDATED 7 August 2018
@set UPDATED-MONTH August 2018
@set UPDATED 29 September 2018
@set UPDATED-MONTH September 2018