]> git.ipfire.org Git - thirdparty/bash.git/log
thirdparty/bash.git
9 days agofixed a bug with expanding unquoted $* when the separator is not whitespace and one... devel
Chet Ramey [Wed, 20 May 2026 14:18:32 +0000 (10:18 -0400)] 
fixed a bug with expanding unquoted $* when the separator is not whitespace and one or more of the positional parameters ends with the separator, resulting in an extra blank field being generated; fixed an issue with adjusting SHLVL in subshells that caused the environment to be rebuilt too many times; fix to make sure function substitution doesn't leave the -v option unset

3 weeks agointerim fix for generic list functions to avoid pointer aliasing issues; documentatio...
Chet Ramey [Fri, 8 May 2026 15:36:36 +0000 (11:36 -0400)] 
interim fix for generic list functions to avoid pointer aliasing issues; documentation updates

4 weeks agofix problem with trapped signals arriving while running SIGINT traps; new `rev' loada...
Chet Ramey [Tue, 28 Apr 2026 19:06:45 +0000 (15:06 -0400)] 
fix problem with trapped signals arriving while running SIGINT traps; new `rev' loadable builtin

8 weeks agofix a bug in word splitting that could potentially drop the first word; complete...
Chet Ramey [Thu, 2 Apr 2026 15:02:52 +0000 (11:02 -0400)] 
fix a bug in word splitting that could potentially drop the first word; complete -p now prefixes the compspec for commands that begin with `-' with `--'; several builtins updated to use $'...' quoting for output when appropriate

2 months agoupdate fix to save history if fatal signal arrives during $PROMPT_COMMAND execution...
Chet Ramey [Tue, 24 Mar 2026 14:10:30 +0000 (10:10 -0400)] 
update fix to save history if fatal signal arrives during $PROMPT_COMMAND execution; fix issue with extglob and empty patterns preceding pattern beginning with a `.'

2 months agofix for heuristic to detect case statements when parsing $() command substitutions...
Chet Ramey [Mon, 9 Mar 2026 18:54:45 +0000 (14:54 -0400)] 
fix for heuristic to detect case statements when parsing $() command substitutions to find history expansion; fix for history not being saved if a SIGHUP arrives during $PROMPT_COMMAND execution; workaround for Cygwin bug that results in bash incorrectly calculating the system pipe size

2 months agofix cosmetic error when printing if commands containing here-documents in the body...
Chet Ramey [Tue, 3 Mar 2026 16:14:10 +0000 (11:14 -0500)] 
fix cosmetic error when printing if commands containing here-documents in the body; compiling -DSTRICT_POSIX now forces posix-mode shells to expand redirections before assignment statements preceding simple commands

3 months agofix posix-mode tilde expansion so non-assignment words containing "~:" do not undergo...
Chet Ramey [Tue, 17 Feb 2026 18:08:27 +0000 (13:08 -0500)] 
fix posix-mode tilde expansion so non-assignment words containing "~:" do not undergo tilde expansion; heuristic to skip case statements while performing history expansion on $() command substitutions; undo redirections before running an EXIT trap when executing a builtin in a subshell

3 months agodocumentation updates; fix read builtin not to set tty EOL character to NUL if the...
Chet Ramey [Mon, 9 Feb 2026 19:09:42 +0000 (14:09 -0500)] 
documentation updates; fix read builtin not to set tty EOL character to NUL if the delimiter is NULL

3 months agochange `read -d' on a tty when the delimiter is not a newline to set the terminal...
Chet Ramey [Fri, 30 Jan 2026 21:43:46 +0000 (16:43 -0500)] 
change `read -d' on a tty when the delimiter is not a newline to set the terminal EOL character instead of putting the terminal into character-at-a-time mode; change some calls to atoi to use strol instead

4 months agonew `jobid' loadable builtin like ash-based shells; fix for nofork command substituti...
Chet Ramey [Fri, 23 Jan 2026 21:39:00 +0000 (16:39 -0500)] 
new `jobid' loadable builtin like ash-based shells; fix for nofork command substitution when followed by an asynchronous subshell using GNU nohup; fix for nofork command substitution to move the file descriptor moved to the anonymous file out of the user-accessible range

4 months agoreadline's internal pager now accepts `f' and `d' commands like `less
Chet Ramey [Sun, 18 Jan 2026 22:55:44 +0000 (17:55 -0500)] 
readline's internal pager now accepts `f' and `d' commands like `less

4 months agothe `history' builtin prints error messages for certain read and write errors; implem...
Chet Ramey [Sun, 18 Jan 2026 22:48:33 +0000 (17:48 -0500)] 
the `history' builtin prints error messages for certain read and write errors; implementation of new form of nofork command substitution that does not remove trailing newlines

4 months agomodify way bash avoids running traps in subshells that haven't reset the trap strings...
Chet Ramey [Wed, 14 Jan 2026 16:08:22 +0000 (11:08 -0500)] 
modify way bash avoids running traps in subshells that haven't reset the trap strings yet; new readline bindable command 'shell-expand-and-requote-line'

4 months agochange posix-mode implicit redirection from /dev/null for asynchronous commands so...
Chet Ramey [Tue, 6 Jan 2026 15:46:14 +0000 (10:46 -0500)] 
change posix-mode implicit redirection from /dev/null for asynchronous commands so that 0<&0 does not count as an explicit redirection for austin-group interp 1913; fix spurious debug message about job notification for -c command; fix error handling for wait builtin if there are no children in a subshell

4 months agohistory builtin has a -H option to display history entries as they would be written...
Chet Ramey [Mon, 5 Jan 2026 16:57:18 +0000 (11:57 -0500)] 
history builtin has a -H option to display history entries as they would be written to the history file; history builtin now takes a START-END range specifier for listing; fix stray semicolon when printing shell functions containing a case command; changes to stdin redirection detection in preparation for POSIX interp 1913

4 months agofixes for several bugs found via fuzzing: overflow in $'...' hex expansion; fix for...
Chet Ramey [Tue, 30 Dec 2025 21:06:40 +0000 (16:06 -0500)] 
fixes for several bugs found via fuzzing: overflow in $'...' hex expansion; fix for accessing freed memory when reading input from stdin and using multiple redirections to stdin; fix for pointer aliasing problem after a syntax error while executing a command string

4 months agoNew -D option for fc to force it to delete history entries selected for editing and...
Chet Ramey [Tue, 30 Dec 2025 20:55:55 +0000 (15:55 -0500)] 
New -D option for fc to force it to delete history entries selected for editing and re-execution; change readline edit-and-execute-command bindable command so it acts more like an accept-line followed by a command execution than an editing command that returns to readline()

5 months agoallow locale's decimal point as radix character when parsing fixed-point decimal...
Chet Ramey [Wed, 17 Dec 2025 14:59:56 +0000 (09:59 -0500)] 
allow locale's decimal point as radix character when parsing fixed-point decimal into seconds and fractional seconds; handle case of shell script file descriptor being made non-blocking; fix smalkl memory leak in programmable completion of shell option names; fix for patsub_replacement behavior when BASH_COMPAT = 42 and the replacement string is quoted; fix for readine when changing show-mode-in-prompt variable

5 months agoimplementation of printf '%N$' numbered argument conversion specifier, compatible...
Chet Ramey [Fri, 5 Dec 2025 20:50:38 +0000 (15:50 -0500)] 
implementation of printf '%N$' numbered argument conversion specifier, compatible with coreutils

5 months agofix longjmp error when timing null command in posix mode; unset exit trap in subshell...
Chet Ramey [Tue, 2 Dec 2025 22:15:44 +0000 (17:15 -0500)] 
fix longjmp error when timing null command in posix mode; unset exit trap in subshells before checking for pending fatal signal; changes for gcc sometimes-uninitialized warning

6 months agofix expansion of $* and $@ in contexts where word splitting is not performed to be...
Chet Ramey [Mon, 24 Nov 2025 14:51:15 +0000 (09:51 -0500)] 
fix expansion of $* and $@ in contexts where word splitting is not performed to be more consistent across different word expansions; fix pathname canonicalization when setting $BASH

6 months agofix export environment if a local variable inherits the export attribute from a varia...
Chet Ramey [Wed, 19 Nov 2025 15:18:54 +0000 (10:18 -0500)] 
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

6 months agofix for a trap on SIGINT restoring the default disposition in an asynchronous subshel...
Chet Ramey [Mon, 17 Nov 2025 19:50:43 +0000 (14:50 -0500)] 
fix for a trap on SIGINT restoring the default disposition in an asynchronous subshell; change cd exit status if -Pe supplied and the directory can't be changed; fix for compound associative array assignment if one of the expanded words unsets the array during word expansion; fixes for rare systems that don't have various defines and system calls

6 months agominor test suite updates; fix for export string when a variable from a function tempo...
Chet Ramey [Tue, 11 Nov 2025 16:36:53 +0000 (11:36 -0500)] 
minor test suite updates; fix for export string when a variable from a function temporary environment is converted to an array variable; use fpurge to discard builtin output after a SIGINT in an interactive shell; fix for words containing quoted strings and {forward,backward}-shellword; experimental fix to discard a bgpid when a child with the same pid is created only if the new child is also an asynchronous pid; change read builtin to return >1 on read error, since 1 is reserved for EOF

7 months agospeedups for character processing in a multibyte locale when expanding $'...'; cosmet...
Chet Ramey [Mon, 27 Oct 2025 14:42:10 +0000 (10:42 -0400)] 
speedups for character processing in a multibyte locale when expanding $'...'; cosmetic fix for select command when read returns EOF; fix for a forced interactive shell running under emacs with a pipe for stdin; fix for local nameref variables with the same name as variables in a function's temporary environment; fix for `x=y local -n x' not making `x' visible as a local variable; turn off nameref attribute for local nameref variables converted to arrays

7 months agoround seconds in command timing information if precision is >= 0; fix for readline...
Chet Ramey [Thu, 23 Oct 2025 20:35:55 +0000 (16:35 -0400)] 
round seconds in command timing information if precision is >= 0; fix for readline word boundaries when quoted command substitutions appear; remove nameref attribute when converting nameref variable into an array; change how help strings are written to builtins.c; change read builtin to update unwind-protect if the input string is reallocated; fix crash when an expansion on the rhs of an assignment statement unsets the variable on the lhs

7 months agomore test suite changes to partially highlight warning messages; several fixes to...
Chet Ramey [Fri, 17 Oct 2025 19:30:08 +0000 (15:30 -0400)] 
more test suite changes to partially highlight warning messages; several fixes to bracket expression parsing with equivalence classes, collating symbols, and character classes together with range expressions

7 months agotest suite updates: highlight failed test scripts; optionally save failed test output...
Chet Ramey [Thu, 16 Oct 2025 15:44:26 +0000 (11:44 -0400)] 
test suite updates: highlight failed test scripts; optionally save failed test output; report number of successful tests; exit based on number of test failures; indent warning messages to make them stand out

7 months agoread builtin fixes for CHERI environment; use CLOCK_GETTIME in gettimeofday replaceme...
Chet Ramey [Tue, 14 Oct 2025 18:21:00 +0000 (14:21 -0400)] 
read builtin fixes for CHERI environment; use CLOCK_GETTIME in gettimeofday replacement; readline fix to not optimize typeahead while defining a keyboard macro; fix for crash with unset nameref variable; make sure to save currently executing command around running DEBUG trap

7 months agofix issue with making local variables from the temporary environment arrays; document...
Chet Ramey [Mon, 6 Oct 2025 21:20:10 +0000 (17:20 -0400)] 
fix issue with making local variables from the temporary environment arrays; documentation updates; fix read builtin to check that the delimiter is not a newline before changing the terminal settings with a zero-length timeout

7 months agofix for %P in TIMEFORMAT; make updating variables that aren't subject to allexport...
Chet Ramey [Mon, 6 Oct 2025 19:29:41 +0000 (15:29 -0400)] 
fix for %P in TIMEFORMAT; make updating variables that aren't subject to allexport smoother; fix spurious compiler warning about realloc; efficiency improvement for command timing; fix issue with read builtin and failure to set terminal attributes

7 months agofix problem with completing filenames with user-supplied double quotes containing...
Chet Ramey [Wed, 1 Oct 2025 15:14:27 +0000 (11:14 -0400)] 
fix problem with completing filenames with user-supplied double quotes containing word expansion characters; fix problem with printf %S and precision overflow; fix issue with %P in TIMEFORMAT when timing null commands in posix mode; fix problem with SIGINT while parsing command substitutions

7 months agobuiltins now return success if supplied --help; use groff to build HTML man pages...
Chet Ramey [Wed, 1 Oct 2025 14:44:10 +0000 (10:44 -0400)] 
builtins now return success if supplied --help; use groff to build HTML man pages; reset mbstate if $'...' strings read an invalid multibyte sequence; read -t 0 now looks at other options (-n/-N/-d) and sets the terminal state appropriately

8 months agofix for potential read builtin crash if bash gets a signal before read reads any...
Chet Ramey [Thu, 18 Sep 2025 21:54:55 +0000 (17:54 -0400)] 
fix for potential read builtin crash if bash gets a signal before read reads any input; make wait -f work if there are no pid or job arguments and update documentation; save and restore variable reflected in $BASH_COMMAND around shell function calls

8 months agofix for invalid bracketed paste prefix when the final character is wrong; fixes for...
Chet Ramey [Thu, 18 Sep 2025 21:35:34 +0000 (17:35 -0400)] 
fix for invalid bracketed paste prefix when the final character is wrong; fixes for unlikely SIGINTs while readline is reading from the keyboard; android fix for generating $'...' strings in the presence of invalid multibyte characters

8 months agoexperimental change to use groff instead of man2html for HTML man pages; man page...
Chet Ramey [Thu, 18 Sep 2025 21:26:51 +0000 (17:26 -0400)] 
experimental change to use groff instead of man2html for HTML man pages; man page updates for reserved words; fix for pattern matching bracket expression ranges; readline changes to disallow defining some recursive keyboard macros

8 months agodeclare builtin changes to reject -i when used with -n; readline changes to make...
Chet Ramey [Thu, 4 Sep 2025 16:29:57 +0000 (12:29 -0400)] 
declare builtin changes to reject -i when used with -n; readline changes to make control characters visible in search strings; readline signal handling changes to avoid data corruption and UAF; documentation updates for more consistent quoting

9 months agofix for rare readline case where read(2) succeeds but also gets a signal as it is...
Chet Ramey [Fri, 22 Aug 2025 20:10:45 +0000 (16:10 -0400)] 
fix for rare readline case where read(2) succeeds but also gets a signal as it is returning to user mode; fix for bash completion filename quoting when there is more than one match

9 months agofix for nofork comsubs undoing enclosing command's redirections; fix for binding...
Chet Ramey [Wed, 20 Aug 2025 15:08:28 +0000 (11:08 -0400)] 
fix for nofork comsubs undoing enclosing command's redirections; fix for binding _ variable in the temporary environment; fix for crash when making special variables arrays; accommodate IFS as array variable; fix for SIGINT arriving while cleaning up a readline incremental search

9 months agofix issue with break in nofork comsub when expanding for command word list; add error...
Chet Ramey [Thu, 14 Aug 2025 14:27:52 +0000 (10:27 -0400)] 
fix issue with break in nofork comsub when expanding for command word list; add error message if the value of a nameref variable expands to an invalid variable name

9 months agoallow the --with-curses configure argument to specify a library name; fix for case...
Chet Ramey [Fri, 8 Aug 2025 16:11:17 +0000 (12:11 -0400)] 
allow the --with-curses configure argument to specify a library name; fix for case pattern lists containing both null and non-null strings; fix for bug with PS1 expansion containing an arithmetic syntax error

9 months agofix for parameter expansions that contain valid and invalid expansions; avoid stale...
Chet Ramey [Mon, 4 Aug 2025 14:18:32 +0000 (10:18 -0400)] 
fix for parameter expansions that contain valid and invalid expansions; avoid stale readdir() value in getcwd replacement; check libtinfow for termcap functions; fix to propagate exit status of builtins run in subshells back to calling shell

9 months agohistory library can now read history from non-regular files; fix for readline char...
Chet Ramey [Fri, 1 Aug 2025 20:26:31 +0000 (16:26 -0400)] 
history library can now read history from non-regular files; fix for readline char search and macros; better fix for PROMPT_COMMAND and aliases ending in newlines; fix for casting COMMAND * and SIMPLE_COM * when parsing |&; fix to avoid undefined behavior when performing left and right arithmetic shifts

10 months agofix for `wait -n' in posix mode; fix for long messages in readline; fix for short...
Chet Ramey [Fri, 18 Jul 2025 15:53:01 +0000 (11:53 -0400)] 
fix for `wait -n' in posix mode; fix for long messages in readline; fix for short reads by `source' builtin; fix for crash on RISC-V machines; fix for bad memory read when getopts is called twice with different sets of arguments

10 months agochange overflow behavior in fltexpr; fix for readline event hook; fix for internal...
Chet Ramey [Fri, 11 Jul 2025 15:48:01 +0000 (11:48 -0400)] 
change overflow behavior in fltexpr; fix for readline event hook; fix for internal quoting of array subscripts in arithmetic expression contexts

10 months agofix for crash when executing PROMPT_COMMAND; fix for readline crash when rl_save_prom...
Chet Ramey [Wed, 9 Jul 2025 20:33:00 +0000 (16:33 -0400)] 
fix for crash when executing PROMPT_COMMAND; fix for readline crash when rl_save_prompt is not followed by rl_set_prompt; fix for bash C-xg key binding listing completions; fix for precision overflow issue in printf; fix for readline non-multibyte builds

10 months agoupdate formatted documentation; fix typo in bashline.c; update system-dependent tests
Chet Ramey [Tue, 8 Jul 2025 13:59:39 +0000 (09:59 -0400)] 
update formatted documentation; fix typo in bashline.c; update system-dependent tests

11 months agoupdated translations; documentation updates; update copyright dates
Chet Ramey [Fri, 27 Jun 2025 18:07:28 +0000 (14:07 -0400)] 
updated translations; documentation updates; update copyright dates

11 months agoupdated translations; back out change allowing quoted characters and process substitu...
Chet Ramey [Mon, 16 Jun 2025 17:47:40 +0000 (13:47 -0400)] 
updated translations; back out change allowing quoted characters and process substitution words in function names; rework readline change for GNU Hurd and ncurses

11 months agoaddition to POSIX mode documentation; new translations; update copyrights on some...
Chet Ramey [Fri, 6 Jun 2025 16:16:11 +0000 (12:16 -0400)] 
addition to POSIX mode documentation; new translations; update copyrights on some files; update formatted documentation; changes to cut/lcut loadable builtins when supplied -a ARRAY

11 months agofix for namerefs referencing an unset array index with nounset enabled; addition...
Chet Ramey [Fri, 30 May 2025 14:11:03 +0000 (10:11 -0400)] 
fix for namerefs referencing an unset array index with nounset enabled; addition to buildconf.h.in for C23 compilers

12 months agosome fixes for static analysis findings; fix for brace expansion being too greedy...
Chet Ramey [Mon, 19 May 2025 13:10:57 +0000 (09:10 -0400)] 
some fixes for static analysis findings; fix for brace expansion being too greedy checking sequence expressions; fix for strip targets when cross-compiling

12 months agofix for command substitution string parsing that resulted in top-level unwind-protect...
Chet Ramey [Sun, 4 May 2025 21:21:25 +0000 (17:21 -0400)] 
fix for command substitution string parsing that resulted in top-level unwind-protects being run in the wrong spot; fix for delimiter byte being part of invalid multibyte character in read builtin

12 months agocheck for delimiter_depth being 0 before popping off the stack (reset_parser resets...
Chet Ramey [Wed, 30 Apr 2025 20:19:08 +0000 (16:19 -0400)] 
check for delimiter_depth being 0 before popping off the stack (reset_parser resets it); make EOFs while reading here-doc delimiters sticky; when reading arith command, push back a character after the first closing paren that isn't a second close paren to fix backslash issue

13 months agofix for read builtin and invalid multibyte characters followed by the delimiter;...
Chet Ramey [Tue, 22 Apr 2025 14:39:43 +0000 (10:39 -0400)] 
fix for read builtin and invalid multibyte characters followed by the delimiter; updated formatted documentation; new bash.pot file with updated strings; updated translations

13 months agofix to preserve blank lines when reading multiline entries from a history file; fix...
Chet Ramey [Fri, 18 Apr 2025 15:08:27 +0000 (11:08 -0400)] 
fix to preserve blank lines when reading multiline entries from a history file; fix for completion with quoted command delimiters; updated translations

13 months agoadd math function calls to fltexpr; HISTFILESIZE documentation updates; help text...
Chet Ramey [Wed, 9 Apr 2025 15:14:41 +0000 (11:14 -0400)] 
add math function calls to fltexpr; HISTFILESIZE documentation updates; help text updates for exxport, history; update translations

13 months agominor updates for 5.3-rc1 release
Chet Ramey [Fri, 4 Apr 2025 14:50:15 +0000 (10:50 -0400)] 
minor updates for 5.3-rc1 release

13 months agofix for multiple assignment statements containing nofork comsubs preceding a command...
Chet Ramey [Mon, 31 Mar 2025 13:58:59 +0000 (09:58 -0400)] 
fix for multiple assignment statements containing nofork comsubs preceding a command; fix for possible issue with invalid bash input fd

14 months agofix for invalid brace sequence expressions; cosmetic fix to help builtin; documentati...
Chet Ramey [Mon, 24 Mar 2025 21:07:43 +0000 (17:07 -0400)] 
fix for invalid brace sequence expressions; cosmetic fix to help builtin; documentation and copyright updates; bump version to bash-5.3-rc1; cosmetic locale fixes

14 months agodocumentation updates for arithmetic expansion and array subscripts; update BASH_COMM...
Chet Ramey [Fri, 7 Mar 2025 15:23:58 +0000 (10:23 -0500)] 
documentation updates for arithmetic expansion and array subscripts; update BASH_COMMAND for subshells; fix potential file descriptor leak in here document pipes

15 months agorevert change that suppressed array subscript expansion when called by the let builti...
Chet Ramey [Mon, 24 Feb 2025 16:36:49 +0000 (11:36 -0500)] 
revert change that suppressed array subscript expansion when called by the let builtin; fix default file descriptor for <> redirection when printing command

15 months agofix issue with redirections to bash input file descriptor; new minimal chmod builtin...
Chet Ramey [Wed, 12 Feb 2025 16:18:16 +0000 (11:18 -0500)] 
fix issue with redirections to bash input file descriptor; new minimal chmod builtin; posix mode change for kill builtin return status; perform additional validation on brace expansion sequence expressions

15 months agofix error return from wait builtin in a subshell when there are no children of this...
Chet Ramey [Mon, 10 Feb 2025 14:27:45 +0000 (09:27 -0500)] 
fix error return from wait builtin in a subshell when there are no children of this shell

15 months agoposix change for undoing redirections after failed exec; change readline to set lines...
Chet Ramey [Tue, 28 Jan 2025 15:15:16 +0000 (10:15 -0500)] 
posix change for undoing redirections after failed exec; change readline to set lines and columns after SIGTSTP/SIGCONT

16 months agotaking the length of an unset variable subscripted with anything but @ or * is a...
Chet Ramey [Fri, 24 Jan 2025 16:21:16 +0000 (11:21 -0500)] 
taking the length of an unset variable subscripted with anything but @ or * is a fatal error; quote results of u prompt expansion; posix mode changes for exiting on -e when in a shell function; fix readline redisplay issue when bold prompt spans multiple lines

16 months agofix issue with internally quoting multibyte characters; the let builtin now suppresse...
Chet Ramey [Fri, 17 Jan 2025 16:41:49 +0000 (11:41 -0500)] 
fix issue with internally quoting multibyte characters; the let builtin now suppresses additional array subscript expansion; small change to how readline export-completions displays filenames; new loadable builtin to do floating-point arithmetic

16 months agodocumentation updates; test suite updates to reduce extraneous diff output; don't...
Chet Ramey [Thu, 9 Jan 2025 21:13:16 +0000 (16:13 -0500)] 
documentation updates; test suite updates to reduce extraneous diff output; don't export BASHOPTS into running tests

16 months agofix issue with failed history expansion changing the history list offset; fix some...
Chet Ramey [Mon, 30 Dec 2024 15:45:14 +0000 (10:45 -0500)] 
fix issue with failed history expansion changing the history list offset; fix some tests to avoid problems with error messages that differ between systems; fix issue with readline rl_abort not clearing any pending command to execute

17 months agomore documentation updates; fix two issues when displaying readline completions;...
Chet Ramey [Fri, 13 Dec 2024 14:51:46 +0000 (09:51 -0500)] 
more documentation updates; fix two issues when displaying readline completions; fix another use-after-free error with readline undo lists

17 months agoanother set of documentation updates; fix readline problem with history entry undo...
Chet Ramey [Tue, 10 Dec 2024 16:43:08 +0000 (11:43 -0500)] 
another set of documentation updates; fix readline problem with history entry undo list corruption

18 months agoadd warning message for null arg to printf %d; update command -v help string; Makefil...
Chet Ramey [Tue, 26 Nov 2024 16:44:30 +0000 (11:44 -0500)] 
add warning message for null arg to printf %d; update command -v help string; Makefile updates to uninstall directories

18 months agonew readline command `export-completions'; update documentation; update translations...
Chet Ramey [Thu, 21 Nov 2024 15:31:38 +0000 (10:31 -0500)] 
new readline command `export-completions'; update documentation; update translations with new strings; Makefile updates

18 months agoMore Makefile updates; updates for bash-5.3-beta
Chet Ramey [Fri, 15 Nov 2024 16:15:23 +0000 (11:15 -0500)] 
More Makefile updates; updates for bash-5.3-beta

18 months agofix for readline redisplay issue in C locale; fix for small memory leak in termcap...
Chet Ramey [Fri, 8 Nov 2024 16:13:57 +0000 (11:13 -0500)] 
fix for readline redisplay issue in C locale; fix for small memory leak in termcap replacement library; updates to formatted documentation; fix problem with distclean and y.tab.h; Makefile clean targets updates

18 months agochanges to non-incremental search implementation for consistency with incremental...
Chet Ramey [Mon, 4 Nov 2024 22:51:50 +0000 (17:51 -0500)] 
changes to non-incremental search implementation for consistency with incremental search; fix for readline unsetting rl_eof_found; minor man page updates

18 months agofinal set of documentation updates; documentation directory cleanups
Chet Ramey [Sat, 2 Nov 2024 18:50:28 +0000 (14:50 -0400)] 
final set of documentation updates; documentation directory cleanups

18 months agofix some exec builtin duplicate error messages; add LIBRARY_SOURCE back to tags and...
Chet Ramey [Fri, 1 Nov 2024 18:12:16 +0000 (14:12 -0400)] 
fix some exec builtin duplicate error messages; add LIBRARY_SOURCE back to tags and TAGS make targets

19 months agofixes for a couple of autoconf macros; update exit builtin for POSIX interp 1602...
Chet Ramey [Mon, 28 Oct 2024 19:05:35 +0000 (15:05 -0400)] 
fixes for a couple of autoconf macros; update exit builtin for POSIX interp 1602; include more info in EOF error message when parsing compound command; update Makefiles by removing some variables, initializing others; update dependencies on version.h

19 months agodo not require leading . for rl color prefix etension; fix for isearch in single...
Chet Ramey [Sat, 26 Oct 2024 16:39:17 +0000 (12:39 -0400)] 
do not require leading . for rl color prefix etension; fix for isearch in single-byte locales; next set of doc updates (SIGNALS); add warning for invalid job id; allow function names to be non-identifiers in posix mode

19 months agonext set of documentation updates (word splitting), rearrange a test in readline...
Chet Ramey [Tue, 22 Oct 2024 19:40:46 +0000 (15:40 -0400)] 
next set of documentation updates (word splitting), rearrange a test in readline's tilde expansion to avoid touching uninitialized data

19 months agonext set of documentation fixes: update formatting, make filename formatting consiste...
Chet Ramey [Fri, 18 Oct 2024 16:19:48 +0000 (12:19 -0400)] 
next set of documentation fixes: update formatting, make filename formatting consistent, typeset the name readline consistently

19 months agonext set of documentation updates (job control); fix read timeout problem; fix bash...
Chet Ramey [Tue, 15 Oct 2024 14:02:17 +0000 (10:02 -0400)] 
next set of documentation updates (job control); fix read timeout problem; fix bash-source-fullpath default; brace expansion integer overflow fix; fix for help output for loadable builtins

19 months agothird set of documentation updates: readline and history
Chet Ramey [Sat, 12 Oct 2024 18:18:07 +0000 (14:18 -0400)] 
third set of documentation updates: readline and history

19 months agonext set of documentation updates, includes readline
Chet Ramey [Fri, 11 Oct 2024 13:41:57 +0000 (09:41 -0400)] 
next set of documentation updates, includes readline

19 months agoFirst set of documentation updates to man page, texinfo manual
Chet Ramey [Tue, 8 Oct 2024 13:52:21 +0000 (09:52 -0400)] 
First set of documentation updates to man page, texinfo manual

20 months agofix for set -e and compound commands inverting return status; tty fix for `fg' from...
Chet Ramey [Fri, 27 Sep 2024 16:00:46 +0000 (12:00 -0400)] 
fix for set -e and compound commands inverting return status; tty fix for `fg' from a key binding; posix mode `wait -n' can return notified jobs; off-by-one error in history word tokenization; new configure option to set bash_source_fullpath

20 months agoin posix mode, don't notify about other terminated jobs if the jobs builtin is listin...
Chet Ramey [Fri, 20 Sep 2024 18:47:56 +0000 (14:47 -0400)] 
in posix mode, don't notify about other terminated jobs if the jobs builtin is listing individual jobs; in posix mode, if `wait pid' finds pid in bgpids, remove it from there

20 months ago`wait -n' notifies on a job it returns; in posix mode, `wait' defers notification...
Chet Ramey [Wed, 11 Sep 2024 19:54:24 +0000 (15:54 -0400)] 
`wait -n' notifies on a job it returns; in posix mode, `wait' defers notification on a reaped pid unless the shell is interactive, as posix now specifies

20 months agotrack initial line number of `{'', `(', and `[[' compound commands; don't have readli...
Chet Ramey [Wed, 4 Sep 2024 21:26:15 +0000 (17:26 -0400)] 
track initial line number of `{'', `(', and `[[' compound commands; don't have readline check for signals while it's handling a signal; fix for malformed printf time format specifier

21 months agodocumentation updates; fix for null commands with redirection expansion errors; chang...
Chet Ramey [Wed, 28 Aug 2024 15:42:10 +0000 (11:42 -0400)] 
documentation updates; fix for null commands with redirection expansion errors; changes to job notifications for interactive shells sourcing files; fix underflow issue with word_top

21 months agoadd bindable readline variable `force-meta-prefix' to allow users to tell readline...
Chet Ramey [Fri, 23 Aug 2024 19:08:31 +0000 (15:08 -0400)] 
add bindable readline variable `force-meta-prefix' to allow users to tell readline how their Meta key works

21 months agoremove extra directory
Chet Ramey [Thu, 22 Aug 2024 13:15:48 +0000 (09:15 -0400)] 
remove extra directory

21 months agofix for printf with broken strtold; fix readline reading specified number of multibyt...
Chet Ramey [Wed, 21 Aug 2024 20:11:01 +0000 (16:11 -0400)] 
fix for printf with broken strtold; fix readline reading specified number of multibyte characters; fix read builtin to deal with invalid utf-8 continuation character as delimiter; turn off -n if supplied at interactive shell invocation

21 months agooptimize asynchronous function invocations; fix for running return from trap while...
Chet Ramey [Thu, 15 Aug 2024 20:37:54 +0000 (16:37 -0400)] 
optimize asynchronous function invocations; fix for running return from trap while sourcing a file; restore completion function if read -e is interrupted

21 months agofix issue with read builtin delimiter in invaild mutibyte char; fix crash if caller...
Chet Ramey [Fri, 9 Aug 2024 14:01:38 +0000 (10:01 -0400)] 
fix issue with read builtin delimiter in invaild mutibyte char; fix crash if caller passes negative count argument to one of the history file writing functions

21 months agonew bash_source_fullpath shell option; documentation updates for wait builtin
Chet Ramey [Tue, 30 Jul 2024 15:18:17 +0000 (11:18 -0400)] 
new bash_source_fullpath shell option; documentation updates for wait builtin

22 months agofix issue with invalidating pointer to last procsub; fix boundary issues with small...
Chet Ramey [Fri, 26 Jul 2024 13:30:30 +0000 (09:30 -0400)] 
fix issue with invalidating pointer to last procsub; fix boundary issues with small reallocs

22 months agojob control cleanups; wait -n can return terminated jobs if supplied pid arguments...
Chet Ramey [Thu, 18 Jul 2024 20:48:17 +0000 (16:48 -0400)] 
job control cleanups; wait -n can return terminated jobs if supplied pid arguments; wait -n can wait for process substitutions if supplied pid arguments