mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-03 02:10:50 +02:00
fix export environment if a local variable inherits the export attribute from a variable with the same name at a previous scope; changes to help builtin and glob pattern arguments; fix for fpurge declaration in a source file; man page typesetting updates
This commit is contained in:
+9
-8
@@ -5,7 +5,7 @@
|
||||
.\" Case Western Reserve University
|
||||
.\" chet.ramey@case.edu
|
||||
.\"
|
||||
.\" Last Change: Mon Oct 6 09:57:24 EDT 2025
|
||||
.\" Last Change: Mon Nov 17 11:37:04 EST 2025
|
||||
.\"
|
||||
.\" For bash_builtins, strip all but "SHELL BUILTIN COMMANDS" section
|
||||
.\" For rbash, strip all but "RESTRICTED SHELL" section
|
||||
@@ -22,7 +22,7 @@
|
||||
.ds zX \" empty
|
||||
.if \n(zZ=1 .ig zZ
|
||||
.if \n(zY=1 .ig zY
|
||||
.TH BASH 1 "2025 October 6" "GNU Bash 5.3"
|
||||
.TH BASH 1 "2025 November 17" "GNU Bash 5.3"
|
||||
.\"
|
||||
.ie \n(.g \{\
|
||||
.ds ' \(aq
|
||||
@@ -8525,7 +8525,7 @@ programmable completion performs \fBreadline\fP's default completion.
|
||||
.PP
|
||||
The options supplied to \fBcomplete\fP and \fBcompopt\fP
|
||||
can control how \fBreadline\fP treats the completions.
|
||||
For instance, the \fI\-o fullquote\fP option tells \fBreadline\fP
|
||||
For instance, the \fB\-o fullquote\fP option tells \fBreadline\fP
|
||||
to quote the matches as if they were filenames.
|
||||
See the description of \fBcomplete\fP below
|
||||
for details.
|
||||
@@ -9080,8 +9080,8 @@ require \fB\-\-\fP to prevent this interpretation.
|
||||
.PP
|
||||
All builtins except
|
||||
\fB:\fP, \fBtrue\fP, \fBfalse\fP, \fBecho\fP, and \fBtest\fP/\fB[\fP
|
||||
accept \fB--help\fP as a special option.
|
||||
If \fB--help\fP is supplied, these builtins output
|
||||
accept \fB\-\-help\fP as a special option.
|
||||
If \fB\-\-help\fP is supplied, these builtins output
|
||||
a help message and exit with a status of 0.
|
||||
.PP
|
||||
.PD 0
|
||||
@@ -10219,7 +10219,7 @@ to force a search of the current directory.
|
||||
The
|
||||
.B \-d
|
||||
option will delete a builtin previously loaded with \fB\-f\fP.
|
||||
If \fI\-s\fP is used with \fI\-f\fP, the new builtin becomes a
|
||||
If \fB\-s\fP is used with \fB\-f\fP, the new builtin becomes a
|
||||
.SM POSIX
|
||||
special builtin.
|
||||
.IP
|
||||
@@ -11057,8 +11057,9 @@ the next to last.
|
||||
.PD
|
||||
.RE
|
||||
.IP
|
||||
If the top element of the directory stack is modified, and
|
||||
the \fI\-n\fP option was not supplied, \fBpopd\fP uses the \fBcd\fP
|
||||
If the top element of the directory stack is modified,
|
||||
and the \fB\-n\fP option was not supplied,
|
||||
\fBpopd\fP uses the \fBcd\fP
|
||||
builtin to change to the directory at the top of the stack.
|
||||
If the \fBcd\fP fails, \fBpopd\fP returns a non-zero value.
|
||||
.IP
|
||||
|
||||
+4
-3
@@ -5338,7 +5338,7 @@ special builtins.
|
||||
|
||||
The @option{-f} option means to load the new builtin command @var{name}
|
||||
from shared object @var{filename}, on systems that support dynamic loading.
|
||||
If @var{filename} does not contain a slash.
|
||||
If @var{filename} does not contain a slash,
|
||||
Bash will use the value of the @env{BASH_LOADABLES_PATH} variable as a
|
||||
colon-separated list of directories in which to search for @var{filename}.
|
||||
The default for @env{BASH_LOADABLES_PATH} is system-dependent,
|
||||
@@ -8941,8 +8941,9 @@ Remove the @var{N}th directory (counting from the right of the
|
||||
list printed by @code{dirs}), starting with zero, from the stack.
|
||||
@end table
|
||||
|
||||
If the top element of the directory stack is modified, and
|
||||
the @option{-n} option was not supplied, @code{popd} uses the @code{cd}
|
||||
If the top element of the directory stack is modified,
|
||||
and the @option{-n} option was not supplied,
|
||||
@code{popd} uses the @code{cd}
|
||||
builtin to change to the directory at the top of the stack.
|
||||
If the @code{cd} fails, @code{popd} returns a non-zero value.
|
||||
|
||||
|
||||
+3
-3
@@ -2,10 +2,10 @@
|
||||
Copyright (C) 1988-2025 Free Software Foundation, Inc.
|
||||
@end ignore
|
||||
|
||||
@set LASTCHANGE Wed Sep 24 09:35:21 EDT 2025
|
||||
@set LASTCHANGE Mon Nov 17 11:37:24 EST 2025
|
||||
|
||||
@set EDITION 5.3
|
||||
@set VERSION 5.3
|
||||
|
||||
@set UPDATED 24 September 2025
|
||||
@set UPDATED-MONTH September 2025
|
||||
@set UPDATED 17 November 2025
|
||||
@set UPDATED-MONTH November 2025
|
||||
|
||||
Reference in New Issue
Block a user