mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-03 10:20:49 +02:00
change some error messages so the format string isn't the return value from gettext(); work around macos problem with gettext() in child processes; don't try to set tty state while running a trap; don't default to trying enable -f file if the shell is restricted; note that configure now supports --enable-year2038
This commit is contained in:
+19
-12
@@ -5,14 +5,14 @@
|
||||
.\" Case Western Reserve University
|
||||
.\" chet.ramey@case.edu
|
||||
.\"
|
||||
.\" Last Change: Tue Apr 23 15:08:01 EDT 2024
|
||||
.\" Last Change: Sat May 11 12:44:30 EDT 2024
|
||||
.\"
|
||||
.\" bash_builtins, strip all but Built-Ins section
|
||||
.\" avoid a warning about an undefined register
|
||||
.\" .if !rzY .nr zY 0
|
||||
.if \n(zZ=1 .ig zZ
|
||||
.if \n(zY=1 .ig zY
|
||||
.TH BASH 1 "2024 April 23" "GNU Bash 5.3"
|
||||
.TH BASH 1 "2024 May 11" "GNU Bash 5.3"
|
||||
.\"
|
||||
.ie \n(.g \{\
|
||||
.ds ' \(aq
|
||||
@@ -6739,9 +6739,11 @@ The text between the point and mark is referred to as the \fIregion\fP.
|
||||
.TP
|
||||
.B beginning\-of\-line (C\-a)
|
||||
Move to the start of the current line.
|
||||
This may also be bound to the Home key on some keyboards.
|
||||
.TP
|
||||
.B end\-of\-line (C\-e)
|
||||
Move to the end of the line.
|
||||
This may also be bound to the End key on some keyboards.
|
||||
.TP
|
||||
.B forward\-char (C\-f)
|
||||
Move forward a character.
|
||||
@@ -6851,15 +6853,17 @@ using a non-incremental search for a string supplied by the user.
|
||||
Search forward through the history using a non-incremental search for
|
||||
a string supplied by the user.
|
||||
.TP
|
||||
.B history\-search\-forward
|
||||
Search forward through the history for the string of characters
|
||||
between the start of the current line and the point.
|
||||
This is a non-incremental search.
|
||||
.TP
|
||||
.B history\-search\-backward
|
||||
Search backward through the history for the string of characters
|
||||
between the start of the current line and the point.
|
||||
This is a non-incremental search.
|
||||
This may be bound to the Page Up key on some keyboards.
|
||||
.TP
|
||||
.B history\-search\-forward
|
||||
Search forward through the history for the string of characters
|
||||
between the start of the current line and the point.
|
||||
This is a non-incremental search.
|
||||
This may be bound to the Page Down key on some keyboards.
|
||||
.TP
|
||||
.B history\-substring\-search\-backward
|
||||
Search backward through the history for the string of characters
|
||||
@@ -7016,15 +7020,18 @@ Capitalize the current (or following) word. With a negative argument,
|
||||
capitalize the previous word, but do not move point.
|
||||
.TP
|
||||
.B overwrite\-mode
|
||||
Toggle overwrite mode. With an explicit positive numeric argument,
|
||||
switches to overwrite mode. With an explicit non-positive numeric
|
||||
argument, switches to insert mode. This command affects only
|
||||
\fBemacs\fP mode; \fBvi\fP mode does overwrite differently.
|
||||
Toggle overwrite mode.
|
||||
With an explicit positive numeric argument, switches to overwrite mode.
|
||||
With an explicit non-positive numeric argument, switches to insert mode.
|
||||
This command affects only \fBemacs\fP mode;
|
||||
\fBvi\fP mode does overwrite differently.
|
||||
Each call to \fIreadline()\fP starts in insert mode.
|
||||
In overwrite mode, characters bound to \fBself\-insert\fP replace
|
||||
the text at point rather than pushing the text to the right.
|
||||
Characters bound to \fBbackward\-delete\-char\fP replace the character
|
||||
before point with a space. By default, this command is unbound.
|
||||
before point with a space.
|
||||
By default, this command is unbound,
|
||||
but may be bound to the Insert key on some keyboards.
|
||||
.PD
|
||||
.SS Killing and Yanking
|
||||
.PD 0
|
||||
|
||||
Reference in New Issue
Block a user