From c61bfbfd130ed91d0fbe1503c812cacfbb76d79b Mon Sep 17 00:00:00 2001 From: Chet Ramey Date: Tue, 4 Feb 2014 09:33:06 -0500 Subject: [PATCH] commit bash-20140124 snapshot --- CHANGES | 6 +- CHANGES-4.3 | 6 +- CWRU/CWRU.chlog | 31 + CWRU/CWRU.chlog~ | 5704 +++++++++++++++++++++++++++++++++++++ Makefile.in | 3 +- Makefile.in~ | 1554 ++++++++++ builtins/gen-helpfiles.c | 10 +- builtins/gen-helpfiles.c~ | 192 ++ builtins/jobs.def | 2 +- builtins/jobs.def~ | 298 ++ doc/bash.0 | 154 +- doc/bash.html | 28 +- doc/bash.pdf | Bin 312382 -> 312461 bytes doc/bash.ps | 3658 ++++++++++++------------ doc/bashref.html | 701 ++--- doc/bashref.info | 303 +- doc/bashref.ps | 409 +-- doc/builtins.ps | 2 +- doc/rbash.ps | 2 +- execute_cmd.c | 16 +- pathexp.c | 2 +- po/af.gmo | Bin 1244 -> 1244 bytes po/af.po | 78 +- po/bash.pot | 78 +- po/bg.gmo | Bin 34668 -> 34668 bytes po/bg.po | 78 +- po/ca.gmo | Bin 9739 -> 9739 bytes po/ca.po | 78 +- po/cs.gmo | Bin 168005 -> 168005 bytes po/cs.po | 78 +- po/da.gmo | Bin 102350 -> 102350 bytes po/da.po | 78 +- po/de.gmo | Bin 71280 -> 71280 bytes po/de.po | 78 +- po/el.gmo | Bin 37185 -> 37185 bytes po/el.po | 78 +- po/en@boldquot.gmo | Bin 165718 -> 165718 bytes po/en@boldquot.po | 80 +- po/en@quot.gmo | Bin 164126 -> 164126 bytes po/en@quot.po | 80 +- po/eo.gmo | Bin 156067 -> 156067 bytes po/eo.po | 78 +- po/es.gmo | Bin 124201 -> 124201 bytes po/es.po | 78 +- po/et.gmo | Bin 12133 -> 12133 bytes po/et.po | 78 +- po/fi.gmo | Bin 104376 -> 104376 bytes po/fi.po | 78 +- po/fr.gmo | Bin 128012 -> 128012 bytes po/fr.po | 78 +- po/ga.gmo | Bin 58471 -> 58471 bytes po/ga.po | 78 +- po/gl.gmo | Bin 63233 -> 63233 bytes po/gl.po | 78 +- po/hr.gmo | Bin 34075 -> 34075 bytes po/hr.po | 78 +- po/hu.gmo | Bin 112658 -> 112658 bytes po/hu.po | 78 +- po/id.gmo | Bin 110282 -> 110282 bytes po/id.po | 78 +- po/it.gmo | Bin 124167 -> 124167 bytes po/it.po | 78 +- po/ja.gmo | Bin 135623 -> 135623 bytes po/ja.po | 78 +- po/lt.gmo | Bin 29354 -> 29354 bytes po/lt.po | 78 +- po/nl.gmo | Bin 165324 -> 165324 bytes po/nl.po | 78 +- po/pl.gmo | Bin 168196 -> 168196 bytes po/pl.po | 78 +- po/pt_BR.gmo | Bin 9580 -> 9580 bytes po/pt_BR.po | 78 +- po/ro.gmo | Bin 9358 -> 9358 bytes po/ro.po | 78 +- po/ru.gmo | Bin 9155 -> 9155 bytes po/ru.po | 78 +- po/sk.gmo | Bin 122728 -> 122728 bytes po/sk.po | 78 +- po/sl.gmo | Bin 118855 -> 118855 bytes po/sl.po | 78 +- po/sv.gmo | Bin 160743 -> 160743 bytes po/sv.po | 78 +- po/tr.gmo | Bin 90159 -> 90159 bytes po/tr.po | 78 +- po/uk.gmo | Bin 215538 -> 215538 bytes po/uk.po | 78 +- po/vi.gmo | Bin 173049 -> 173049 bytes po/vi.po | 78 +- po/zh_CN.gmo | Bin 103613 -> 103613 bytes po/zh_CN.po | 78 +- po/zh_TW.gmo | Bin 5876 -> 5876 bytes po/zh_TW.po | 78 +- subst.c | 2 +- support/shobj-conf | 45 +- support/shobj-conf~ | 595 ++++ tests/RUN-ONE-TEST | 2 +- 96 files changed, 12479 insertions(+), 4058 deletions(-) create mode 100644 CWRU/CWRU.chlog~ create mode 100644 Makefile.in~ create mode 100644 builtins/gen-helpfiles.c~ create mode 100644 builtins/jobs.def~ create mode 100644 support/shobj-conf~ diff --git a/CHANGES b/CHANGES index 639915b13..6ea500704 100644 --- a/CHANGES +++ b/CHANGES @@ -40,9 +40,13 @@ m. Fixed a bug that caused certain positional parameter and array expansions to mishandle (discard) null positional parameters and array elements. n. The shell no longer blocks receipt of signals while running trap handlers - for those signals, and allows trap handlers to be run recursively + for those signals, and allows most trap handlers to be run recursively (running trap handlers while a trap handler is executing). +o. The shell now handles backslashes in regular expression arguments to the + [[ command's =~ operator slightly differently, resulting in more + consistent behavior. + 2. Changes to Readline a. Fixed a bug that could cause readline to crash and seg fault attempting to diff --git a/CHANGES-4.3 b/CHANGES-4.3 index 9cfbd3f59..8c83c866a 100644 --- a/CHANGES-4.3 +++ b/CHANGES-4.3 @@ -40,9 +40,13 @@ m. Fixed a bug that caused certain positional parameter and array expansions to mishandle (discard) null positional parameters and array elements. n. The shell no longer blocks receipt of signals while running trap handlers - for those signals, and allows trap handlers to be run recursively + for those signals, and allows most trap handlers to be run recursively (running trap handlers while a trap handler is executing). +o. The shell now handles backslashes in regular expression arguments to the + [[ command's =~ operator slightly differently, resulting in more + consistent behavior. + 2. Changes to Readline a. Fixed a bug that could cause readline to crash and seg fault attempting to diff --git a/CWRU/CWRU.chlog b/CWRU/CWRU.chlog index 51ab22f55..cc81fabea 100644 --- a/CWRU/CWRU.chlog +++ b/CWRU/CWRU.chlog @@ -5676,3 +5676,34 @@ subst.c returned from expand_word_internal expects a different code path when $@ is being expanded. Fixes bug reported by Theodoros V. Kalamatianos + + 1/19 + ---- +subst.c + - list_dequote_escapes: new function; analogue of list_quote_escapes + +pathexp.c + - quote_string_for_globbing: fix case where unescaped ^A is last char + in string; need to pass it through unaltered instead of turning it + into a bare backslash + - quote_string_for_globbing: when quoting for regexp matching in [[, + don't treat backslash as a quote character; quote the backslash as + any other character. Part of investigation into reports from + Eduardo A. Bustamante López + + 1/25 + ---- +builtins/gen-helpfiles.c + - write_helpfiles: add prototype + - make sure to #undef xmalloc/xfree/xrealloc/free if USING_BASH_MALLOC + is defined. the code does not use them, and we don't link against + xmalloc.o. Report from Linda Walsh + +Makefile.in + - variables.o: add dependency on builtins/builtext.h; helps with + parallel builds. Report from Linda Walsh + +support/shobj-conf + - darwin: combine the stanzas into one that will not require them to + be updated on each Mac OS X release. Report and fix from Max Horn + diff --git a/CWRU/CWRU.chlog~ b/CWRU/CWRU.chlog~ new file mode 100644 index 000000000..c70b70960 --- /dev/null +++ b/CWRU/CWRU.chlog~ @@ -0,0 +1,5704 @@ + 2/14/2011 + --------- +[bash-4.2 released] + + 2/15 + ---- +lib/glob/gmisc.c + - fix wmatchlen and umatchlen to avoid going past the end of the + string on an incomplete bracket expression that ends with a + NUL. Partial fix for bug reported by Clark Wang + + 2/16 + ---- +subst.h + - new string extract flag value: SX_WORD. Used when calling + extract_dollar_brace_string to skip over the word in + ${param op word} from parameter_brace_expand + +subst.c + - change parameter_brace_expand to add SX_WORD to flags passed to + extract_dollar_brace_string + - change parameter_brace_expand to use SX_POSIXEXP for all non-posix + word expansion operators that treat single quotes as special, not + just % and # + - change extract_dollar_brace_string to initialize dolbrace_state to + DOLBRACE_WORD if SX_WORD flag supplied and we shouldn't use + DOLBRACE_QUOTE. Fixes bug reported by Juergen Daubert + +doc/{bash.1,bashref.texi} + - document the exact expansions here strings undergo + + 2/17 + ---- +lib/readline/vi_mode.c + - make sure that `dd', `cc', and `yy' call vidomove_dispatch from + rl_domove_read_callback. Fixes bug reported by Clark Wang + + +lib/readline/callback.c + - make sure _rl_internal_char_cleanup is called after the + vi-motion callbacks (rl_vi_domove_callback) in rl_callback_read_char. + Companion to above fix + +doc/{bash.1,bashref.texi} + - make sure that the text describing the rhs of the == and =~ + operators to [[ states that only the quoted portion of the pattern + is matched as a string + + 2/18 + ---- +lib/glob/gmisc.c + - better fix for umatchlen/wmatchlen: keep track of the number of + characters in a bracket expression as the value to increase + matchlen by if the bracket expression is not well-formed. Fixes + bug reported by Clark Wang + +subst.c + - change expand_string_for_rhs so that it sets the W_NOSPLIT2 flag + in the word flags. We will not perform word splitting or quote + removal on the result, so we do not want to add quoted nulls if + we see "" or ''. Fixes bug reported by Mike Frysinger + + + 2/19 + ---- +variables.c + - new function, int chkexport(name), checks whether variable NAME is + exported and remakes the export environment if necessary. Returns + 1 if NAME is exported and 0 if not + - call chkexport(name) to get tzset to look at the right variable in + the environment when modifying TZ in sv_tz. Don't call tzset if + chkexport doesn't indicate that the variable is exported + +variables.h + - new extern declaration for chkexport + + +{parse.y,builtins/printf.def} + - call sv_tz before calling localtime() when formatting time strings + in prompt strings or using printf. Fixes bug reported by + Dennis Williamson + +execute_cmd.c + - modify fix of 2/9 to add casts when those variables are passed to + functions; some compilers throw errors instead of warnings. Report + and fix from Joachim Schmitz + +support/shobj-conf + - add a stanza for nsk on the Tandem from Joachim Schmitz + + +{shell,lib/readline/shell}.c + - Tandem systems should use getpwnam (getlogin()); for some reason + they don't do well with using getuid(). Fix from Joachim Schmitz + + + 3/1 + --- +variables.c + - make sure that the return value from find_variable is non-null + before trying to use it in chkexport. Fixes bug reported by + Evangelos Foutras + + 3/3 + --- +parse.y + - when adding $$ to the current token buffer in read_token_word(), + don't xmalloc a buffer for two characters and then strcpy it, just + copy the characters directly into the token buffer. Fix from + Michael Whitten + +execute_cmd.c + - fix expand_word_unsplit to add the W_NOSPLIT2 flag to the word to + be expanded, so "" doesn't add CTLNUL. Similar to fix of 2/18 to + expand_string_for_rhs. Fixes bug reported by Nathanael D. Noblet + and Matthias Klose + +parse.y + - fix extended_glob case of read_token_word to allocate an extra + space in the buffer for the next character read after the extended + glob specification if it's a CTLESC or CTLNUL. Report and fix from + Michael Witten + - fix shell expansions case of read_token_word to allocate an extra + space in the buffer for the next character read after the shell + expansion if it's a CTLESC or CTLNUL. Report and fix from + Michael Witten + - TENTATIVE: fix read_token_word to reduce the amount of buffer space + required to hold the translated and double-quoted value of $"..." + strings. Report and fix from Michael Witten + - change code around got_character and got_escaped_character labels to + make sure that we call RESIZE_MALLOCED_BUFFER before adding the + CTLESC before a CTLESC or CTLNUL, and before adding the character if + we're not adding a CTLESC. Report and fix from + Michael Witten + +subst.c + - new param flags value, PF_ASSIGNRHS, mirrors W_ASSIGNRHS, noting that + parameter expansion is on rhs of assignment statement. That inhibits + word splitting + - change param_expand to call string_list_dollar_at with quoted == 1 + if PF_ASSIGNRHS is set, so it will quote IFS characters in the + positional parameter before separating them with the first char of + $IFS. This keeps the rhs from being split inappropriately. Fixes + bug reported by Andres Perera + + 3/4 + --- +lib/readline/bind.c + - add a missing free of `names' in rl_function_dumper. Bug report + and fix from Michael Snyder + + 3/5 + --- +lib/readline/rltty.c + - change rl_deprep_terminal so it uses fileno (stdin) for the tty fd + if rl_instream is not set, like rl_prep_terminal + + 3/6 + --- +lib/readline/display.c + - fix rl_message to use a dynamically-allocated buffer instead of a + fixed-size buffer of 128 chars for the `local message prompt'. Bug + report and fix from Micah Cowan + + 3/7 + --- +jobs.c + - add sentinel to wait_sigint_handler so it only sets wait_sigint_received + if waiting_for_child is non-zero; otherwise, it restores the old + SIGINT handler and sends itself the SIGINT + - set waiting_for_child around the calls to waitchld that use it to + synchronously wait for a process + - change logic that decides whether or not the child process blocked + or handled SIGINT based on whether or not waitpid returns -1/EINTR + and the shell receives a SIGINT and the child does not exit. If + the child later exits due to SIGINT, cancel the assumoption that it + was handled + - instead of testing whether or not the child exited due to SIGINT + when deciding whether the shell should act on a SIGINT it received + while waiting, test whether or not we think the child caught + SIGINT. If it did, we let it go (unless the shell has it trapped); + if it did not catch it, the shell acts on the SIGINT. Fix from + Linus Torvalds , bug report originally + from Oleg Nesterov + + 3/8 + --- +shell.c + - initialize no_line_editing to 1 if READLINE is not defined -- we + can't have line editing without readline + + 3/12 + ---- +lib/readline/signals.c + - add SIGHUP to the set of signals readline handles + +lib/readline/doc/rltech.texi + - document that SIGHUP is now part of the set of signals readline + handles + +lib/readline/input.c + - if _rl_caught_signal indicates that read() was interrupted by a + SIGHUP or SIGTERM, return READERR or EOF as appropriate + - call rl_event_hook, if it's set, if call to read in rl_getc + returns -1/EINTR. If rl_event_hook doesn't do anything, this + continues the loop as before. This handles the other fatal + signals + +execute_cmd.c + - add a couple of QUIT; calls to execute_disk_command and + execute_simple_command to improve responsiveness to interrupts + and fatal signals + +input.c + - rearrange getc_with_restart so that the return values from read() + are handled right + +parse.y + - don't need to set terminate_immediately in yy_stream_get, since + getc_with_restart checks for terminating signals itself + - since readline returns READERR on SIGHUP or SIGTERM, don't need + to set terminate_immediately. Still doesn't handle other + signals well -- will have to check that some more + +bashline.c + - new function, bash_event_hook, for rl_event_hook. Just checks for + terminating signals and acts on them using CHECK_TERMSIG. + - set rl_event_hook to bash_event_hook + +builtins/read.def + - take out setting terminate_immediately; add calls to CHECK_TERMSIG + after read calls + +doc/{bash.1,bashref.texi} + - move the text describing the effect of negative subscripts used to + reference indexed array elements to the paragraphs describing + ${parameter[subscript]}, since that's where they are implemented. + Pointed out by Christopher F. A. Johnson + +arrayfunc.[ch],subst.c + - array_expand_index now takes a new first argument: a SHELL_VAR * + of the array variable being subscripted. Can be used later to fully + implement negative subscripts + + 3/14 + ---- +lib/glob/glob.c + - fix mbskipname to not turn the directory entry name into a wide char + string if the conversion of the pattern to a wide char string fails + - fix mbskipname to call skipname if either the pattern or the filename + can't be converted into a wide-char string + +lib/glob/xmbsrtowcs.c + - fix xdupmbstowcs2 to handle return value of 0 from mbsnrtowcs and + short-circuit with failure in that case. Fixes bug reported by + Roman Rakus + + 3/15 + ---- +bashline.c + - new variable, bash_filename_quote_characters to store the value + assigned to rl_filename_quote_characters so it can be restored + if changed. + - change bashline_reset and attempt_shell_completion to restore + rl_filename_quote_characters if not set to default + + 3/22 + ---- +lib/glob/glob.c + - wdequote_pathname falls back to udequote_pathname if xdupmbstowcs + fails to convert the pathname to a wide-character string + +lib/glob/xmbsrtowcs.c + - xdupmbstowcs2: change to fix problem with leading '\\' (results in + nms == 0, which causes it to short-circuit with failure right + away). Fixes bug pointed out by Werner Fink + - xdupmbstowcs2: compensate for mbsnrtowcs returning 0 by taking the + next single-byte character and going on + - xdupmbstowcs2: change memory allocation to increase by WSBUF_INC + bytes; try to avoid calls to realloc (even if they don't actually + result in more memory being allocated) + + 3/24 + ---- +doc/{bash.1,bashref.texi} + - slightly modify BASH_SUBSHELL description based on complaint from + Sam Liddicott + + 3/25 + ---- +trap.c + - change free_trap_strings to not call free_trap_string for signals + that are being ignored, like reset_or_restore_signal_handlers. + Fixes bug reported by Satoshi Takahashi + + 3/26 + ---- +lib/readline/rltypedefs.h + - remove old Function/VFunction/CPFunction/CPPFunction typedefs as + suggested by Tom Tromey + +lib/readline/rlstdc.h + - move defines for USE_VARARGS/PREFER_STDARG/PREFER_VARARGS from + config.h.in to here because declaration of rl_message in + readline.h uses the defines. This makes it hard for another packages + to use after the header files are installed, since config.h is not + one of the installed files. Suggested by Tom Tromey + + + 3/27 + ---- +print_cmd.c + - change indirection_string from a static buffer to a dynamic one + managed by indirection_level_string(), so we don't end up truncating + PS4. Suggested by Dennis Williamson + +lib/readline/shell.c + - change sh_set_lines_and_columns to use static buffers instead of + allocating the buffers to pass to setenv/putenv + +lib/readline/terminal.c + - change _rl_get_screen_size to not call sh_set_lines_and_columns if + ignore_env == 0 + - _rl_sigwinch_resize_terminal: new function to just retrieve terminal + size, ignoring environment + +lib/readline/rlprivate.h + - new external declaration for _rl_sigwinch_resize_terminal() (currently + unused) + +lib/readline/signals.c + - rl_sigwinch_handler: set _rl_caught_signal to SIGWINCH + - rl_sigwinch_handler: don't immediately call rl_resize_terminal; just + leave _rl_caught_signal set for RL_CHECK_SIGNALS to handle + - _rl_signal_handler: call rl_resize_terminal if sig == SIGWINCH. + Should fix hang when sending multiple repeated SIGWINCH reported by + Henning Bekel + + 3/29 + ---- +lib/sh/snprintf.c + - include math.h for any defines for isinf/isnan + - use code from gnulib documentation to implement isinf/isnan if they + are not defined + +configure.in + - don't check for isinf or isnan; c99 says they're macros anyway + +config.h.in + - remove defines for ISINF_IN_LIBC and ISNAN_IN_LIBC, no longer used + by snprintf.c + + 4/2 + --- +braces.c + - brace_gobbler: fix to understand double-quoted command substitution, + since the shell understands unquoted comsubs. Fixes bug reported + by Michael Whitten + +lib/readline/display.c + - include on MDOS + - get and set screen size using DJGPP-specific calls on MSDOS + - move cursor up clear screen using DJGPP-specific calls + - don't call tputs on DJGPP; there is no good terminfo support + +lib/readline/terminal.c + - include on MDOS + - get and set screen size using DJGPP-specific calls on MSDOS + - use DJGPP-specific initialization on MSDOS, zeroing all the + _rl_term_* variables + - don't call tputs on DJGPP; there is no good terminfo support + DJGPP support from Eli Zaretskii + + 4/6 + --- + +config-top.h + - change DEFAULT_PATH_VALUE to something more useful and modern + + 4/8 + --- +tests/printf2.sub + - make sure LC_ALL and LC_CTYPE are set so LANG assignment takes effect. + Reported by Cedric Arbogast + + 4/11 + ---- +include/chartypes.h + - fix a couple of dicey defines (though ones that don't cause any + compiler warnings) in IN_CTYPE_DOMAIN + +doc/{bashref.texi,bash.1} + - add note referring to duplicating file descriptors in sections + describing redirecting stdout and stderr and appending to stdout + and stderr. Suggested by Matthew Dinger + +pcomplete.c + - it_init_helptopics: new function to support completing on help topics, + not just builtins + - it_helptopics: new programmable completion list of help topics + - build list of helptopic completions in gen_action_completions on + demand + +pcomplete.h + - new extern declaration for it_helptopics + +builtins/complete.def + - the `helptopic' action now maps to CA_HELPTOPIC intead of CA_BUILTIN, + since there are more help topics than just builtins. Suggested by + Clark Wang + + 4/12 + ---- +print_cmd.c + - fix print_arith_for_command to add a call to PRINT_DEFERRED_HEREDOCS + before ending the body of the command, so heredocs get attached to + the right command instead of to the loop. From gentoo bug 363371 + http://bugs.gentoo.org/show_bug.cgi?id=363371 + +execute_cmd.c + - change coproc_pidchk to unset the appropriate shell variables when + the (currently single) known coproc pid terminates + - cleanup and new functions to fully support multiple coprocesses when + and if I decide to go there + + 4/13 + ---- +print_cmd.c + - fix print_group_command to add a call to PRINT_DEFERRED_HEREDOCS + after call to make_command_string_internal before printing closing + `}' + - fix make_command_string_internal to add a call to + PRINT_DEFERRED_HEREDOCS after recursive call to + make_command_string_internal in case cm_subshell before printing + closing `)' + + 4/14 + ---- +print_cmd.c + - change overlapping strcpy in named_function_string to memmove + +sig.h + - UNBLOCK_SIGNAL: convenience define, same as UNBLOCK_CHILD, just + restores an old signal mask + +trap.c + - set_signal: instead of setting the signal handler to SIG_IGN while + installing the new trap handler, block the signal and unblock it + after the new handler is installed. Fixes bug reported by Roman + Rakus + + 4/15 + ---- +doc/{bash.1,bashref.texi} + - make it clear that enabling monitor mode means that all jobs run in + separate process groups + + 4/18 + ---- +builtins/fc.def + - update fix of 4/15/2010 to not take saved_command_line_count into + account when stepping down the history list to make sure that + last_hist indexes something that is valid. Fixes bug reported by + + + 4/19 + ---- +builtins/fc.def + - fc_gethnum: make sure the calculation to decide the last history + entry is exactly the same as fc_builtin. Fixes bug uncovered by + fix of 4/18 to stop seg fault + + 4/22 + ---- +lib/readline/terminal.c + - change _rl_enable_meta_key to set a flag indicating that it sent the + enable-meta sequence + - _rl_disable_meta_key: new function to turn off meta mode after we + turned it on with _rl_enable_meta_key + +lib/readline/rlprivate.h + - extern declaration for _rl_disable_meta_key + +configure.in + - if not cross-compiling, set CFLAGS_FOR_BUILD from any CFLAGS inherited + from the environment. Fixes HP/UX build problem reported by + "Daniel Richard G." + + 4/26 + ---- +config-top.h + - define MULTIPLE_COPROCS to 0 so the code is still disabled but easy + to enable via configure option or editing this file + + 4/29 + ---- +lib/sh/eaccess.c + - freebsd provides faccessat, with the same misfeature as their eaccess + and access implementations (X_OK returns true for uid==0 regardless + of the actual file permissions), so reorganize code to check the + file permissions as with eaccess. Report and fix from Johan Hattne + + + 5/2 + --- +doc/{bash.1,bashref.texi} + - add forward reference to `Pattern Matching' from `Pathname + Expansion', suggested by Greg Wooledge + + 5/5 + --- +pcomplib.c + - the bash_completion project now distributes over 200 completions + for various programs, with no end in sight, so increase the value + of COMPLETE_HASH_BUCKETS from 32 to 128 + +pathexp.c + - quote_string_for_globbing: make sure CTLESC quoting CTLESC is + translated into \ even if the flags include QGLOB_REGEXP. + We don't want to process the second CTLESC as a quote character. + Fixes bug reported by Shawn Bohrer + + 5/6 + --- +builtins/printf.def + - change PRETURN to not call fflush if ferror(stdout) is true + - if a call to one of the stdio functions or printstr leaves + ferror(stdout) true, and PRETURN is going to be called, let PRETURN + print the error message rather than doubling up the messages. Fixes + problem reported by Roman Rakus + + 5/9 + --- +doc/{bash.1,bashref.texi} + - add note to the effect that lists inside compound command can be + terminated by newlines as well as semicolons. Suggested by + Roman Byshko + + 5/10 + ---- +subst.c + - remove_quoted_nulls: fix problem that caused it to skip over the + character after a CTLNUL, which had the effect of skipping every + other of a series of CTLNULs. Fixes bug reported by + Marten Wikstrom + + 5/11 + ---- +subst.c + - extract_process_subst: add SX_COMMAND flag to call to + extract_delimited_string, since we're expanding the same sort of + command as command substitution. Fixes bug reported in Ubuntu + bug 779848 + + 5/12 + ---- +configure.in + - set the prefer_shared and prefer_static variables appropriately + depending on the value of $opt_static_link + +aclocal.m4 + - AC_LIB_LINKFLAGS_BODY: change to not prefer shared versions of the + libraries it's searching for if the prefer_shared variable is "no". + Fixes problem reported by Cedric Arbogast + + 5/13 + ---- +lib/readline/readline.c + - _rl_internal_teardown: add call to _rl_disable_meta_key to make the + meta key active only for the duration of the call to readline() + - _rl_internal_setup: move call to _rl_enable_meta_key here from + readline_initialize_everything so the meta key is active only for + the duration of the call to readline(). Suggestion from Miroslav + Lichvar + +builtins/help.def + - help_builtin: change strncmp to strcmp so that `help read' no longer + matches `readonly'. Suggested by Clark Wang + +config.h.in + - add define for GLIBC21, checked using jm_GLIBC21 as part of the tests + for libintl + +lib/malloc/malloc.c + - internal_free: don't use the cached value of memtop when deciding + whether or not to adjust the break and give memory back to the kernel + when using the GNU C library, since glibc uses sbrk for its own + internal purposes. From Debian bug 614815, reported by Samuel + Thibault + +aclocal.m4 + - BASH_STRUCT_WEXITSTATUS_OFFSET: change AC_RUN_IFELSE to AC_TRY_RUN + to avoid warning about not using AC_LANG_SOURCE + + 5/14 + ---- +bashline.[ch] + - two new functions, bashline_set_event_hook and bashline_reset_event_hook, + to set rl_event_hook to bash_event_hook and back to NULL, respectively + - don't set rl_event_hook unconditionally + +sig.c + - termsig_sighandler: if the shell is currently interactive and + readline is active, call bashline_set_event_hook to cause + termsig_handler to be called via bash_event_hook when the shell + returns from the signal handler + + 5/15 + ---- +lib/readline/display.c + - _rl_col_width: Mac OS X has a bug in wcwidth: it does not return 0 + for UTF-8 combining characters. Added workaround dependent on + MACOSX. Fixes problem pointed out by Thomas De Contes + + + 5/16 + ---- +lib/readline/rlmbutil.h + - WCWIDTH: wrapper for wcwidth that returns 0 for Unicode combining + characters on systems where wcwidth is broken (e.g., Mac OS X). + +lib/readline/{complete,display,mbutil}.c + - use WCWIDTH instead of wcwidth + + 5/17 + ---- +lib/readline/display.c + - update_line: after computing ofd and nfd, see whether the next + character in ofd is a zero-width combining character. If it is, + back ofd and nfd up one, so the base characters no longer compare + as equivalent. Fixes problem reported by Keith Winstein + + +lib/readline/nls.c + - _rl_utf8locale: new flag variable, set to non-zero if the current + locale is UTF-8 + - utf8locale(): new function, returns 1 if the passed lspec (or the + current locale) indicates that the locale is UTF-8. Called from + _rl_init_eightbit + +lib/readline/rlprivate.h + - extern declaration for _rl_utf8locale + +locale.c + - locale_utf8locale: new flag variable, set to non-zero if the current + locale is UTF-8 (currently unused) + - locale_isutf8(): new function, returns 1 if the passed lspec (or the + current locale) indicates that the locale is UTF-8. Should be called + whenever the locale or LC_CTYPE value is modified + +aclocal.m4 + - BASH_WCWIDTH_BROKEN: new test for whether or not wcwidth returns + zero-width characters like unicode combining characters as having + display length 1; define WCWIDTH_BROKEN in this case + +config.h.in + - WCWIDTH_BROKEN: new define + +lib/readline/rlmbutil.h + - change WCWIDTH macro to use _rl_utf8locale and the full range of + Unicode combining characters (U+0300-U+036F) + + 5/19 + ---- +lib/readline/rlprivate.h + - _rl_search_context: new member, prevc, will hold character read + prior to lastc + +lib/readline/isearch.c + - _rl_isearch_dispatch: if the character causes us to index into + another keymap, save that character in cxt->prevc + - _rl_isearch_dispatch: if we index into another keymap, but don't + find a function that's special to i-search, and the character that + caused us to index into that keymap would have terminated the + search, push back cxt->prevc and cxt->lastc to make it appear as + if `prevc' terminated the search, and execute lastc as a command. + We have to push prevc back so we index into the same keymap before + we read lastc. Fixes bug report from Davor Cubranic + + + 5/20 + ---- +expr.c + - expr_bind_variable: pay attention to the return value from + bind_variable and check whether or not we should error out due to + a readonly or noassign variable. Fixes bug reported by Eric + Blake + + 5/26 + ---- + +lib/readline/search.c + - include histlib.h for ANCHORED_SEARCH defines + - rl_history_search_flags: new variable, holds ANCHORED_SEARCH flag for + the duration of a history search + - rl_history_search_reinit: takes a new flags variable, defines whether + or not the search is anchored; assigned to rl_history_search_flags + - rl_history_serarch_reinit: if ANCHORED_SEARCH flag passed, add ^ to + beginning of search string; otherwise search string is unmodified + - rl_history_search_internal: set rl_point appropriately based on + whether or not rl_history_search_flags includes ANCHORED_SEARCH + - rl_history_substr_search_forward: new function, for non-anchored + substring search forward through history for string of characters + preceding rl_point + - rl_history_substr_search_backward: new function, for non-anchored + substring search backward through history for string of characters + preceding rl_point. Original code from Niraj Kulkarni + + +lib/readline/readline.h + - extern declarations for rl_history_substr_search_{for,back}ward + +lib/readline/funmap.c + - history-substring-search-forward: new bindable command, invokes + rl_history_substr_search_forward + - history-substring-search-backward: new bindable command, invokes + rl_history_substr_search_backward + +lib/readline/doc/{rluser.texi,readline.3} + - document history-substring-search-forward and + history-substring-search-backward + + 5/27 + ---- +{nojobs,jobs}.c + - add support for DONT_REPORT_SIGTERM so that the shell doesn't print + a message when a job exits due to SIGTERM since that's the default + signal sent by the kill builtin. Suggested by Marc Herbert + + +config-top.h + - DONT_REPORT_SIGTERM: new user-modifiable setting. Commented out + by default + + 5/28 + ---- +lib/readline/bind.c + - _rl_skip_to_delim: skip to a closing double quote or other delimiter, + allowing backslash to quote any character, including the delimiter + - rl_parse_and_bind: call _rl_skip_to_delim instead of using inline + code + - rl_parse_and_bind: allow quoted strings as the values of string + variables. Variable values without double quotes have trailing + whitespace removed (which still allows embedded whitespace, for + better or worse). Fixes problem with string variables not matching + in `set' command if values happen to have trailing spaces or tabs + (debian bash bug #602762), but introduces slight incompatibility. + + 5/29 + ---- +doc/{bash.1,bashref.texi} + - clarify unset description to specify that without options, a + variable, then a shell function if there is no variable by that + name, is unset. Fixes discrepancy reported by Mu Qiao + + + 6/4 + ---- +doc/{bash.1,bashref.texi} + - clarify description of LINES and COLUMNS (and checkwinsize shopt + option) to make it clear that only interactive shells set a + handler for SIGWINCH and update LINES and COLUMNS. Original + report submitted by Jonathan Nieder + +arrayfunc.c + - expand_compound_array_assignment: defer expansion of words between + parens when performing compound assignmnt to an associative array + variable + - assign_compound_array_list: perform the same expansions when doing + a compound array assignment to an associative array variable as + when doing a straight array index assignment. The idea is that + foo=( [ind1]=bar [ind2]=quux) + is the same as + foo[ind1]=bar ; foo[ind2]=quux + + This fixes problems with double-expansion and quote removal being + performed on the array indices + + 6/13 + ---- +doc/{bash.1,bashref.texi} + - Add a little text to make it clear that the locale determines how + range expressions in glob patterns are handled. + + + 6/21 + ---- +builtins/read.def + - display a message and return error status if -a is used with an + existing associative array. Fixes bug reported by Curtis Doty + + + 6/24 + ---- +{jobs,nojobs}.c + - non-interactive shells now react to the setting of checkwinsize + and set LINES and COLUMNS after a foreground job exits. From a + suggestion by Leslie Rhorer + +doc/{bash.1,bashref.texi} + - checkwinsize: remove language saying that only interactive shells + check the window size after each command + +lib/readline/histfile.c + - history_backupfile: new file, creates a backup history file name + given a filename (appending `-') + - history_do_write: when overwriting the history file, back it up + before writing. Restore backup file on a write error. Suggested + by chkno@chkno.net + +bashline.c + - find_cmd_name: two new arguments, return the start and end of the + actual text string used to find the command name, without taking + whitespace into account + - attempt_shell_completion: small changes to make sure that completion + attempted at the beginning of a non-empty line does not find a + programmable completion, even if the command name starts at point + - attempt_shell_completion: small change to make sure that completion + does not find a progcomp when in whitespace before the command + name + - attempt_shell_completion: small change to make sure that completion + does not find a progcomp when point is at the first character of a + command name, even when there is leading whitespace (similar to + above). Fixes problems noted by Ville Skytta + +subst.c + - brace_expand_word_list: since the individual strings in the strvec + returned by brace_expand are already allocated, don't copy them to + newly-allocated memory when building the WORD_LIST, just use them + intact + +locale.c + - locale_mb_cur_max: cache value of MB_CUR_MAX when we set or change + the locale to avoid a function call every time we need to read it + +shell.h + - new struct to save shell_input_line and associated variables: + shell_input_line_state_t + - add members of sh_parser_state_t to save and restore token and the + size of the token buffer + +parse.y + - {save,restore}_input_line_state: new functions to save and restore + shell_input_line and associated variables + - {save,restore}_parser_state: add code to save and restore the token + and token buffer size + - xparse_dolparen: call save_ and restore_input_line_state to avoid + problems with overwriting shell_input_line when we recursively + call the parser to parse a command substitution. Fixes bug + reported by Rui Santos + +include/shmbutil.h + - use locale_mb_cur_max instead of MB_CUR_MAX in ADVANCE_CHAR and + similar macros + +lib/glob/smatch.c + - rangecmp,rangecmp_wc: change to take an additional argument, which + forces the use of strcoll/wscoll when non-zero. If it's 0, a new + variable `glob_asciirange' controls whether or not we use strcoll/ + wscoll. If glob_asciirange is non-zero, we use straight + C-locale-like ordering. Suggested by Aharon Robbins + + + 6/30 + ---- +execute_cmd.c + - execute_pipeline: make sure the lastpipe code is protected by + #ifdef JOB_CONTROL. Fixes problem reported by Thomas Cort + + + 7/2 + --- +lib/readline/complete.c + - EXPERIMENTAL: remove setting of _rl_interrupt_immediately around + completion functions that touch the file system. Idea from Jan + Kratochvil and the GDB development + team + +lib/readline/signals.c + - rl_signal_handler: if we're in callback mode, don't interrupt + immediately on a SIGWINCH + + 7/3 + --- +bashline.c + - set_directory_hook: and its siblings are a new set of functions to + set, save, and restore the appropriate directory completion hook + - change callers to use {set,save,restore}_directory_hook instead of + manipulating rl_directory_rewrite_hook directly + - dircomplete_expand: new variable, defaults to 0, if non-zero causes + directory names to be word-expanded during word and filename + completion + - change {set,save,restore}_directory_hook to look at dircomplete_expand + and change rl_directory_completion_hook or rl_directory_rewrite_hook + appropriately + +bashline.h + - extern declaration for set_directory_hook so shopt code can use it + + 7/6 + --- +builtins/shopt.def + - globasciiranges: new settable shopt option, makes glob ranges act + as if in the C locale (so b no longer comes between A and B). + Suggested by Aharon Robbins + + 7/7 + --- +doc/{bash.1,bashref.texi} + - document new `globasciiranges' shopt option + + 7/8 + --- +builtins/shopt.def + - direxpand: new settable option, makes filename completion expand + variables in directory names like bash-4.1 did. + - shopt_set_complete_direxpand: new function, does the work for the + above by calling set_directory_hook + +doc/{bash.1,bashref.texi} + - document new `direxpand' shopt option + + 7/15 + ---- +lib/readline/isearch.c + - _rl_isearch_dispatch: when adding character to search string, use + cxt->lastc (which we use in the switch statement) instead of c, + since lastc can be modified earlier in the function + + 7/18 + ---- +lib/readline/rlprivate.h + - _rl_search_context: add another member to save previous value of + (multibyte) lastc: pmb is to mb as prevc is to lastc + +lib/readline/isearch.c: + - _rl_isearch_dispatch: if a key sequence indexes into a new keymap, + but doesn't find any bound function (k[ind].function == 0) or is + bound to self-insert (k[ind].function == rl_insert), back up and + insert the previous character (the one that caused the index into a + new keymap) and arrange things so the current character is the next + one read, so both of them end up in the search string. Fixes bug + reported by Clark Wang + - _rl_isearch_dispatch: a couple of efficiency improvements when adding + characters to the isearch string + + 7/24 + ---- +lib/readline/isearch.c + - _rl_isearch_dispatch: save and restore cxt->mb and cxt->pmb + appropriately when in a multibyte locale + +doc/{bash.1,bashref.texi} + - correct description of {x}>file (and other redirection operators + that allocate a file descriptor) to note the the fd range is + greater than or equal to 10. Fixes problem reported by + Christian Ullrich + +lib/readline/signals.c + - rl_signal_handler: don't interrupt immediately if in callback mode + +lib/readline/callback.c + - rl_callback_read_char: install signal handlers only when readline + has control in callback mode, so readline's signal handlers aren't + called when the application is active (e.g., between the calls to + rl_callback_handler_install and rl_callback_read_char). If the + readline signal handlers only set a flag, which the application + doesn't know about, the signals will effectively be ignored until + the next time the application calls into the readline callback + interface. Fixes problem of calling unsafe functions from signal + handlers when in callback mode reported by Jan Kratochvil + + +execute_cmd.c + - fix_assignment_words: when in Posix mode, the `command' builtin + doesn't change whether or not the command name it protects is an + assignment builtin. One or more instances of `command' + preceding `export', for instance, doesn't make `export' treat its + assignment statement arguments differently. Posix interpretation + #351 + +doc/{bash.1,bashref.texi} + - document new Posix-mode behavior of `command' when preceding builtins + that take assignment statements as arguments + +builtins/printf.def + - printstr: if fieldwidth or precision are < 0 or > INT_MAX when + supplied explicitly (since we take care of the `-' separately), + clamp at INT_MAX like when using getint(). Fixes issue reported + by Ralph Coredroy + + 7/25 + ---- +lib/readline/chardefs.h + - isxdigit: don't define if compiling with c++; declared as a c++ + template function. Fixes bug reported by Miroslav Lichvar + + +builtins/printf.def + - getint: if garglist == 0, return whatever getintmax returns (0). + Fixes bug reported by Ralph Coredroy + + 7/28 + ---- +doc/{bash.1,bashref.texi} + - minor changes to the descriptions of the cd and pushd builtins + +lib/sh/zread.c + - zsyncfd: change variable holding return value from lseek to + off_t. Bug report and fix from Gregory Margo + + 8/1 + --- +expr.c + - don't check for division by 0 when in a context where no evaluation + is taking place. Fixes bug reported by dnade.ext@orange-ftgroup.com + + 8/6 + --- +execute_cmd.c + - execute_command_internal: the parent branch of the subshell code + (where the child calls execute_in_subshell) should not close all + open FIFOs with unlink_fifo_list if it's part of a shell function + that's still executing. Fixes bug reported by Maarten Billemont + + + 8/9 + --- +builtins/common.c + - get_exitstat: return EX_BADUSAGE (2) on a non-numeric argument + +builtins/return.def + - return_builtin: just call get_exitstat to get the return status, + let it handle proper parsing and handling of arguments. Fixes + issue most recently raised by Linda Walsh . + Reverses change from 9/11/2008 (see above) + + 8/16 + ---- +doc/{bash.1,bashref.texi} + - clean up `set -e' language to make it clearer that any failure of + a compound command will cause the shell to exit, not just subshells + and brace commands + + 8/17 + ---- +configure.in + - make the various XXX_FOR_BUILD variables `precious' to autoconf to + avoid stale data + - change how CC_FOR_BUILD is initialized when cross-compiling and not, + but do not change behavior + - initialize CFLAGS_FOR_BUILD to -g when cross-compiling + - initialize LIBS_FOR_BUILD to $(LIBS) when not cross-compiling, empty + when cross-compiling + - create AUTO_CFLAGS variable to hold basic CFLAGS defaults; used when + CFLAGS not inherited from environment (like effect of old + auto_cflags variable) + - substitute LIBS_FOR_BUILD into output Makefiles + [changes inspired by bug report from Nathan Phillip Brink + -- gentoo bug 378941] + +builtins/Makefile.in + - substitute LIBS_FOR_BUILD from configure, not strictly initialized + to $(LIBS) + + 8/27 + ---- +doc/{bash.1,bashref.texi} + - minor changes to the here string description to clarify the + expansions performed on the word + +support/shobj-conf + - handle compilation on Lion (Mac OS X 10.7/darwin11) with changes + to darwin stanzas. Fixes readline bug reported by Vincent + Sheffer + +lib/sh/strtrans.c + - ansic_wshouldquote: check a string with multi-byte characters for + characters that needs to be backslash-octal escaped for $'...' + - ansic_shouldquote: if is_basic fails for one character, let + ansic_wshouldquote examine the rest of the string and return what + it returns. From a patch sent by Roman Rakus + + 8/30 + ---- +lib/sh/strtrans.c + - ansic_quote: changes to quote (or not) multibyte characters. New + code converts them to wide characters and uses iswprint to check + valid wide chars. From a patch sent by Roman Rakus + + + 9/7 + --- +lib/sh/shquote.c + - sh_backslash_quote: change to be table-driven so we can use a + different table if we want to + - sh_backslash_quote: takes a second char table[256] argument; + +externs.h + - sh_backslash_quote: add second argument to function prototype + +bashline.c,braces.c,parse.y,builtins/printf.def + - change callers of sh_backslash_quote to add second argument + +bashline.c + - filename_bstab: table of characters to pass to sh_backslash_quote; + characters with value 1 will be backslash-quoted + - set_filename_bstab: turn on characters in filename backslash-quote + table according to passed string argument + - call set_filename_bstab every time rl_filename_quote_characters is + assigned a value + - bash_quote_filename: call sh_backslash_quote with filename_bstab + as second argument. This allows other characters in filenames to + be quoted without quoting, for instance, a dollar sign in a shell + variable reference + + 9/8 + --- +bashline.c + - complete_fullquote: new variable, controls table passed to + sh_backslash_quote. If non-zero (the default), the standard set + of shell metacharacters -- as in bash versions up to and including + bash-4.2 -- gets backslash-quoted by the completion code. If zero, + sh_backslash_quote gets the table with the characters in the + variable reference removed, which means they are removed from the + set of characters to be quoted in filenames + + 9/10 + ---- +bashline.c + - bash_filename_stat_hook: new function, designed to expand variable + references in filenames before readline passes them to stat(2) + to determine whether or not they are a directory + + 9/15 + ---- +builtins/declare.def + - if assign_array_element fails due to a bad (or empty) subscript, mark + it as an assignment error and don't attempt any further processing + of that declaration. Fixes segfault bug reported by Diego Augusto + Molina + + 9/19 + ---- +expr.c + - exppower: replace the simple exponentiation algorithm with an + implementation of exponentiation by squaring. Inspired by report + from Nicolas ARGYROU + +bashline.c + - bash_quote_filename: check for rtext being non-null before + dereferencing it + - set_saved_history: operate_and_get_next assumes that the previous + line was added to the history, even when the history is stifled and + at the max number of entries. If it wasn't, make sure the history + number is incremented properly. Partial fix for bug reported by + gregrwm + +doc/{bash.1,bashref.texi},lib/readline/doc/{hsuser,rluser}.texi + - minor editorial changes inspired by suggestions from + Roger Zauner + + 9/20 + ---- +lib/intl/localealias.c + - read_alias_file: close resource leak (fp) when returning on error + + 9/22 + ---- +execute_command.c + - execute_intern_function: implement Posix interpretation 383 by making + it an error to define a function with the same name as a special + builtin when in Posix mode. + http://austingroupbugs.net/view.php?id=383#c692 + + 9/25 + ---- +doc/{bash.1,bashref.texi} + - formatting and some content changes from Benno Schulenberg + + - document new posix-mode behavior from interp 383 change of 9/22 + + 9/30 + ---- +execute_cmd.c + - shell_execve: add strerror to error message about executable file + that shell can't execute as a shell script. From suggestion by + daysleeper + + 10/1 + ---- +bashhist.c + - maybe_add_history: act as if literal_history is set when parser_state + includes PST_HEREDOC, so we save the bodies of here-documents just + as they were entered. Fixes bug reported by Jonathan Wakely + + - bash_add_history: make sure that the second and subsequent lines of + a here document don't have extra newlines or other delimiting + chars added, since they have the trailing newline preserved, when + `lithist' is set and history_delimiting_chars isn't called + +execute_cmd.c + - execute_command_internal: avoid fd exhaustion caused by using + process substitution in loops inside shell functions by using + copy_fifo_list and close_new_fifos (). Fixes debian bash bug + 642504 + +lib/readline/complete.c + - new variable, rl_filename_stat_hook, used by append_to_match. If + filename completion is desired, and rl_filename_stat_hook points + to a function, call that function to expand the filename in an + application-specific way before calling stat. + +bashline.c + - bash_default_completion: if variable completion returns a single + match, use bash_filename_stat_hook and file_isdir to determine + whether or not the variable name expands to a directory. If it + does, set the filename_append_character to `/'. This is not + perfect, so we will see how it works out. Adds functionality + requested by Peter Toft and Patrick Pfeifer + + - rl_filename_stat_hook: assigned bash_filename_stat_hook, so things + like $HOME/Downloads (after completion) have a slash appended. + In general, this causes the stat hook to be called whenever + filename completion is appended. Adds functionality requested by + Patrick Pfeifer + +lib/readline/readline.h + - new extern declaration for rl_filename_stat_hook + +lib/readline/doc/rltech.texi + - rl_directory_rewrite_hook: now documented + - rl_filename_stat_hook: document + +pcomplete.c + - gen_action_completions: in the CA_DIRECTORY case, turn off + rl_filename_completion_desired if it was off before we called + rl_filename_completion_function and we didn't get any matches. + Having it on causes readline to quote the matches as if they + were filenames. Adds functionality requested by many, + including Clark Wang + +assoc.[ch] + - assoc_replace: new function, takes the same arguments as + assoc_insert, but returns the old data instead of freeing it + - assoc_insert: if the object returned by hash_insert doesn't have + the same value for its key as the key passed as an argument, we + are overwriting an existing value. In this case, we can free the + key. Fixes bug reported by David Parks + + 10/5 + ---- +print_cmd.c + - indirection_level_string: small change to only re-enable `x' + option after calling decode_prompt_string if it was on before. In + normal mode, it will be, but John Reiser + has a novel use for that code in conjunction with a pre-loaded + shared library that traces system call usage in shell scripts + + 10/10 + ----- +Makefile.in + - Fix from Mike Frysinger to avoid trying to + build y.tab.c and y.tab.h with two separate runs of yacc if + parse.y changes. Problem with parallel makes + - Fix from Mike Frysinger to avoid subdirectory + builds each trying to make version.h (and all its dependencies) + +lib/sh/Makefile.in + - remove some dependencies on version.h where it doesn't make sense + +variables.c + - initialize_shell_variables: while reading the environment, a shell + running in posix mode now checks for SHELLOPTS being readonly (it + gets set early on in main()) before trying to assign to it. It + saves an error message and the variable gets parsed as it should. + Fixes bug reported by Len Giambrone + + 10/14 + ----- +doc/{bash.1,bashref.texi} + - add to the "duplicating file descriptors" description that >&word + doesn't redirect stdout and stderr if word expands to `-' + - add to the "appending standard output and standard error" + description a note that >&word, where word is a number or `-', + causes other redirection operators to apply for sh and Posix + compatibility reasons. Suggested by Greg Wooledge + + + 10/15 + ----- +pcomplete.c + - change pcomp_filename_completion_function to only run the filename + dequoting function in the cases (as best as it can figure) where + readline won't do it via rl_filename_completion_function. Based + on reports from + + 10/19 + ----- +bashline.c + - attempt_shell_completion: add call to set_directory_hook() to make + sure the rewrite functions are correct. It's cheap and doesn't + hurt + - command_word_completion_function: if completing a command name that + starts with `.' or `..', temporarily suppress the effects of the + `direxpand' option and restore the correct value after calling + rl_filename_completion_function. If it's enabled, the directory + name will be rewritten and no longer match `./' or `../'. Fixes + problem reported by Michael Kalisz + + 10/22 + ----- +builtins/history.def + - push_history: make sure remember_on_history is enabled before we + try to delete the last history entry -- the `history -s' command + might not have been saved. Fixes bug reported by + lester@vmw-les.eng.vmware.com + +lib/readline/complete.c + - rl_callback_read_char: add calls to a macro CALLBACK_READ_RETURN + instead of straight return; add same call at end of function. + Placeholder for future work in deinstalling signal handlers when + readline is not active + + 10/25 + ----- +expr.c + - exp2: catch arithmetic overflow when val1 == INTMAX_MIN and val2 == -1 + for DIV and MOD and avoid SIGFPE. Bug report and pointer to fix + from Jaak Ristioja + - expassign: same changes for arithmetic overflow for DIV and MOD + + 10/28 + ----- +subst.c + - parameter_brace_expand: allow pattern substitution when there is an + expansion of the form ${var/} as a no-op: replacing nothing with + nothing + - parameter_brace_patsub: don't need to check for PATSUB being NULL; + it never is + +flags.c + - if STRICT_POSIX is defined, initialize history_expansion to 0, since + history expansion (and its treatment of ! within double quotes) is + not a conforming posix environment. From austin-group issue 500 + +lib/readline/histexpand.c + - history_expand: when processing a string within double quotes + (DQUOTE == 1), make the closing double quote inhibit history + expansion, as if the word were outside double quotes. In effect, + we assume that the double quote is followed by a character in + history_no_expand_chars. tcsh and csh seem to do this. This + answers a persistent complaint about history expansion + + 10/29 + ----- +make_cmd.c + - make_arith_for_command: use skip_to_delim to find the next `;' + when breaking the string between the double parens into three + separate components instead of a simple character loop. Fixes + bug reported by Dan Douglas + + 11/2 + ---- +Makefile.in + - make libbuiltins.a depend on builtext.h to serialize its creation + and avoid conflict between multiple invocations of mkbuiltins. + Fix from Mike Frysinger + + 11/5 + ---- +findcmd.c + - user_command_matches: if stat(".", ...) returns -1, set st_dev + and st_ino fields in dotinfo to 0 to avoid same_file matches + - find_user_command_in_path: check stat(2) return the same way + +lib/glob/glob.c + - glob_vector: don't call strlen(pat) without checking pat == 0 + - glob_dir_to_array: make sure to free `result' and all allocated + members before returning error due to malloc failure + - glob_vector: make sure to free `nextname' and `npat' on errors + (mostly when setting lose = 1) + - glob_vector: if flags & GX_MATCHDIRS but not GX_ALLDIRS, make + sure we free `subdir' + - glob_filename: when expanding ** (GX_ALLDIRS), make sure we + free temp_results (return value from glob_vector) + +lib/glob/xmbsrtowcs.c + - xdupmbstowcs: fix call to realloc to use sizeof (char *) instead + of sizeof (char **) when assigning idxtmp + +execute_cmd.c + - print_index_and_element: return 0 right away if L == 0 + - is_dirname: fix memory leak by freeing `temp' + - time_command: don't try to deref NULL `command' when assigning + to `posix_time' + - shell_execve: null-terminate `sample' after READ_SAMPLE_BUF so it's + terminated for functions that expect that + +builtins/read.def + - read_builtin: don't call bind_read_variable with a potentially-null + string + +pcomplete.c + - gen_command_matches: don't call dispose_word_desc with a NULL arg + - gen_compspec_completions: fix memory leak by freeing `ret' before + calling gen_action_completions (tcs, ...). happens when + performing directory completion as default and no completions + have been generated + - gen_progcomp_completions: make sure to set foundp to 0 whenever + returning NULL + - it_init_aliases: fix memory leak by freeing alias_list before + returning + +bashline.c + - command_word_completion_function: don't call restore_tilde with a + NULL directory_part argument + - bash_directory_expansion: bugfix: don't throw away results of + rl_directory_rewrite_hook if it's set and returns non-zero + - bind_keyseq_to_unix_command: free `kseq' before returning error + +arrayfunc.c + - assign_array_element_internal: make sure `akey' is freed if non-null + before returning error + - assign_compound_array_list: free `akey' before returning error + - array_value_internal: free `akey' before returning error + - unbind_array_element: free `akey' before returning error + +subst.c + - array_length_reference: free `akey' before returning error in case + of expand_assignment_string_to_string error + - array_length_reference: free `akey' after call to assoc_reference + - skip_to_delim: if skipping process and command substitution, free + return value from extract_process_subst + - parameter_brace_substring: free `val' (vtype == VT_VARIABLE) before + returning if verify_substring_values fails + - parameter_brace_expand: remove two duplicate lines that allocate + ret in parameter_brace_substring case + - parameter_brace_expand: convert `free (name); name = xmalloc (...)' + to use `xrealloc (name, ...)' + - parameter_brace_expand: free `name' before returning when handling + ${!PREFIX*} expansion + - split_at_delims: fix memory leak by freeing `d2' before returning + +redir.c + - redirection_error: free `filename' if the redirection operator is + REDIR_VARASSIGN by assigning allocname + +eval.c + - send_pwd_to_eterm: fix memory leak by freeing value returned by + get_working_directory() + +builtins/cd.def + - change_to_directory: fix memory leak by freeing return value from + resetpwd() + - cd_builtin: fix memory leak by freeing value returned by dirspell() + - cd_builtin: fix memory leak by freeing `directory' if appropriate + before overwriting with return value from resetpwd() + +builtins/type.def + - describe_command: free `full_path' before overwriting it with return + value from sh_makepath + +builtins/complete.def + - compgen_builtin: fix memory leak by calling strlist_dispose (sl) + before overwriting sl with return value from completions_to_stringlist + +builtins/hash.def + - list_hashed_filename_targets: fix memory leak by freeing `target' + +make_cmd.c + - make_arith_for_command: free `init', `test', and `step' before + returning error on parse error + +jobs.c + - initialize_job_control: don't call move_to_high_fd if shell_tty == -1 + +general.c + - check_dev_tty: don't call close with an fd < 0 + - legal_number: deal with NULL `string' argument, return invalid + +lib/sh/fmtulong.c + - fmtulong: if the `base' argument is invalid, make sure we index + buf by `len-1' at maximum + +print_cmd.c + - print_deferred_heredocs: don't try to dereference a NULL `cstring' + - cprintf: make sure to call va_end (args) + +variables.c + - push_dollar_vars: fix call to xrealloc to use sizeof (WORD_LIST *) + instead of sizeof (WORD_LIST **) + +lib/sh/zmapfd.c + - zmapfd: if read returns error, free result and return -1 immediately + instead of trying to reallocate it + + 11/6 + ---- +execute_cmd.c + - cpl_reap: rewrote to avoid using pointer after freeing it; now builds + new coproc list on the fly while traversing the old one and sets the + right values for coproc_list when done + + 11/12 + ----- +builtins/set.def + - if neither -f nor -v supplied, don't allow a readonly function to + be implicitly unset. Fixes bug reported by Jens Schmidt + + +lib/readline/callback.c + - change CALLBACK_READ_RETURN to clear signal handlers before returning + from rl_callback_read_char so readline's signal handlers aren't + installed when readline doesn't have control. Idea from Jan + Kratochvil and the GDB development + team + +pcomplete.h + - COPT_NOQUOTE: new complete/compgen option value + +builtins/complete.def + - noquote: new complete/compgen option; will be used to disable + filename completion quoting + +pcomplete.c + - pcomp_set_readline_variables: pay attention to COPT_NOQUOTE; turns + of rl_filename_quoting_desired if set; turns it on if unset (value + is inverted, since default is on) + +doc/bash.1,lib/readline/doc/rluser.texi + - document new -o noquote option to complete/compgen/compopt + +pathexp.c + - quote_string_for_globbing: if QGLOB_REGEXP, make sure characters + between brackets in an ERE bracket expression are not inappropriately + quoted with backslashes. This is a pretty substantial change, + should be stressed when opening bash up for alpha and beta tests. + Fixes bug pointed out by Stephane Chazleas + + +doc/{bash.1,bashref.texi} + - document that regexp matches can be inconsistent when quoting + characters in bracket expressions, since usual quoting characters + lose their meaning within brackets + - note that regular expression matching when the pattern is stored + in a shell variable which is quoted for expansion causes string + matching + +redir.h + - RX_SAVEFD: new flag value; notes that a redirection denotes an + fd used to save another even if it's not >= SHELL_FD_BASE + +redir.c + - do_redirection_internal: when deciding whether or not to reset the + close-on-exec flag on a restored file descriptor, trust the value + of redirect->flags & RX_SAVCLEXEC even if the fd is < SHELL_FD_BASE + if the RX_SAVEFD flag is set + - add_undo_redirect: set the RX_SAVEFD flag if the file descriptor + limit is such that the shell can't duplicate to a file descriptor + >= 10. Fixes a limitation that tripped a coreutils test reported + by Paul Eggert + + 11/19 + ----- +doc/{bash.1,bashref.texi},lib/readline/doc/hsuser.texi + - make it clear that bash runs HISTFILESIZE=$HISTSIZE after reading + the startup files + - make it clear that bash runs HISTSIZE=500 after reading the + startup files + - make it clear that setting HISTSIZE=0 causes commands to not be + saved in the history list + - make it clear that setting HISTFILESIZE=0 causes the history file + to be truncated to zero size + +variables.c + - sv_histsize: change so setting HISTSIZE to a value less than 0 + causes the history to be `unstifled' + - sv_histsize: change so setting HISTFILESIZE to a value less than 0 + results in no file truncation + - make it clear that numeric values less than 0 for HISTFILESIZE or + HISTSIZE inhibit the usual functions + + 11/23 + ----- +parse.y + - save_input_line_state: add missing `return ls' at the end, since the + function is supposed to return its argument. Pointed out by + Andreas Schwab + +builtins/read.def + - skip over NUL bytes in input, as most modern shells seem to. Bug + report by Matthew Story + +lib/readline/vi_mode.c + - rl_vi_replace: set _rl_vi_last_key_before_insert to invoking key + + 11/25 + ----- +builtins/read.def + - read_builtin: if xrealloc returns same pointer as first argument, + don't bother with the remove_unwind_protect/add_unwind_protect pair + - read_builtin: set a flag (`reading') around calls to zread/zreadc + and readline() + - sigalrm: change to set flag (`sigalrm_seen') and only longjmp if + currently in read(2) (reading != 0) + - CHECK_ALRM: new macro, checks sigalrm_seen and longjmps if non-zero, + behavior of old SIGALRM catching function + - read_builtin: call CHECK_ALRM in appropriate places while reading + line of input. Fixes bug reported by Pierre Gaston + + +lib/readline/vi_mode.c + - rl_vi_replace: initialize characters before printing characters in + vi_replace_keymap to their default values in vi_insertion_keymap, + since we're supposed to be in insert mode replacing characters + - rl_vi_replace: call rl_vi_start_inserting to set last command to + `R' for undo + - rl_vi_replace: set _rl_vi_last_key_before_insert to `R' for future + use by _rl_vi_done_inserting + - vi_save_insert_buffer: new function, broke out code that copies text + into vi_insert_buffer from _rl_vi_save_insert + - _rl_vi_save_replace: new function, saves text modified by + rl_vi_replace (using current point and vi_replace_count to figure + it out) to vi_replace_buffer + - _rl_vi_save_insert: call vi_save_insert_buffer + - _rl_vi_done_inserting: if _rl_vi_last_key_before_insert == 'R', call + _rl_vi_save_replace to save text modified in replace mode (uses + vi_save_insert_buffer) + - _rl_vi_replace_insert: new function, replaces the number of chars + in vi_insert_buffer after rl_point with contents ov vi_insert_buffer + - rl_vi_redo: call _rl_vi_replace_insert if last command == 'R' and + there's something in vi_insert_buffer. Fixes bug with `.' not + redoing the most recent `R' command, reported by Geoff Clare + in readline area on savannah + + 11/26 + ----- +lib/readline/rlprivate.h + - RL_SIG_RECEIVED(): evaluate to non-zero if there is a pending signal + to be handled + - RL_SIGINT_RECEIVED(): evaluate to non-zero if there is a pending + SIGINT to be handled + +lib/readline/complete.c + - remove all mention of _rl_interrupt_immediately + - rl_completion_matches: check RL_SIG_RECEIVED after each call to + the entry function, call RL_CHECK_SIGNALS if true to handle the + signal + - rl_completion_matches: if RL_SIG_RECEIVED evaluates to true, free + and zero out the match_list this function allocated + - rl_completion_matches: if the completion entry function is + rl_filename_completion_function, free the contents of match_list, + because that function does not keep state and will not free the + entries; avoids possible memory leak pointed out by + Garrett Cooper + - gen_completion_matches: if RL_SIG_RECEIVED evalutes to true after + calling rl_attempted_completion_function, free the returned match + list and handle the signal with RL_CHECK_SIGNALS; avoids + possible memory leak pointed out by Garrett Cooper + + - gen_completion_matches: if RL_SIG_RECEIVED evaluates to true after + calling rl_completion_matches, free the returned match list and + handle the signal with RL_CHECK_SIGNALS + +lib/readline/util.c + - rl_settracefp: new utility function to set the tracing FILE * + +lib/readline/signals.c + - _rl_sigcleanup: pointer to a function that will be called with the + signal and a void * argument from _rl_handle_signal + - _rl_sigcleanarg: void * that the rest of the code can set to have + passed to the signal cleanup function + - _rl_handle_signal: if _rl_sigcleanup set, call as + (*_rl_sigcleanup) (sig, _rl_sigcleanarg) + +lib/readline/rlprivate.h + - extern declarations for _rl_sigcleanup and _rl_sigcleanarg + +lib/readline/complete.c + - _rl_complete_sigcleanup: signal cleanup function for completion code; + calls _rl_free_match_list on _rl_sigcleanarg if signal == SIGINT + - rl_complete_internal: before calling display_matches if what_to_do + == `?', set _rl_sigcleanup to _rl_complete_sigcleanup so the match + list gets freed on SIGINT; avoids possible memory leak pointed out + by Garrett Cooper + - rl_complete_internal: in default switch case, call _rl_free_match_list + before returning to avoid memory leak + +doc/bashref.texi + - start at a set of examples for the =~ regular expression matching + operator, touching on keeping the pattern in a shell variable and + quoting portions of the pattern to remove their special meaning + + 12/1 + ---- +lib/glob/gmisc.c + - extglob_pattern: new function, returns 1 if pattern passed as an + argument looks like an extended globbing pattern + +lib/glob/glob.c + - skipname: return 0 immediately if extglob_pattern returns non-zero, + let the extended globbing code do the right thing with skipping + names beginning with a `.' + - mbskipname: return 0 immediately if extglob_pattern returns non-zero, + let the extended globbing code do the right thing with skipping + names beginning with a `.'. Fixes bug reported by Yongzhi Pan + + + 12/2 + ---- +lib/glob/smatch.c + - patscan, patscan_wc: no longer static so other parts of the glob + library can use them, renamed to glob_patscan, glob_patscan_wc + +lib/glob/glob.c + - extern declarations for glob_patscan, glob_patscan_wc + - wchkname: new function, does skipname on wchar_t pattern and dname, + old body of mbskipname after converting to wide chars + - extglob_skipname: new function, checks all subpatterns in an extglob + pattern to determine whether or not a filename should be skipped. + Calls skipname for each subpattern. Dname is only skipped if all + subpatterns indicate it should be. Better fix for bug reported by + Yongzhi Pan + - wextglob_skipname: wide-char version of extglob_skipname, calls + wchkname instead of calling back into mbskipname for each + subpattern to avoid problems with char/wchar_t mismatch + - skipname: call extglob_skipname if extglob_pattern returns non-zero + - mbskipname: call wextglob_skipname if extglob_pattern returns non-zero + - mbskipname: short-circuit immediately if no multibyte chars in + pattern or filename + +execute_cmd.c + - execute_cond_node: added parens to patmatch assignment statement to + make intent clearer + + 12/3 + ---- +configure.in,config.h.in + - check for imaxdiv, define HAVE_IMAXDIV if present + +expr.c + - expassign, exp2: use imaxdiv if available. Doesn't help with checks + for overflow from 10/25 + + 12/6 + ---- +lib/readline/complete.c + - compute_lcd_of_matches: if we're ignoring case in the matches, only + use what the user typed as the lcd if it matches the first match + (after sorting) up to the length of what was typed (if what the + user typed is longer than the shortest of the possible matches, use + the shortest common length of the matches instead). If it doesn't + match, use the first of the list of matches, as if case were not + being ignored. Fixes bug reported by Clark Wang + + + 12/7 + ---- +builtins/cd.def + - cd_builtin: add code to return error in case cd has more than one + non-option argument, conditional on CD_COMPLAINS define (which is + not defined anywhere) + +doc/{bash.1,bashref.texi} + - note that additional arguments to cd following the directory name + are ignored. Suggested by Vaclav Hanzl + + 12/10 + ----- +lib/readline/input.c + - rl_read_key: don't need to increment key sequence length here; doing + it leads to an off-by-one error + +lib/readline/macro.c + - rl_end_kbd_macro: after off-by-one error with rl_key_sequence_length + fixed, can decrement current_macro_index by rl_key_sequence_length + (length of key sequence that closes keyboard macro) + +lib/readline/readline.c + - _rl_dispatch_subseq: fix extra increment of rl_key_sequence_length + when ESC maps to a new keymap and we're converting meta characters + to ESC+key + - _rl_dispatch_subseq: better increment of rl_key_sequence_length + before we dispatch to a function in the ISFUNC case (where the + second increment above should have happened) + - rl_executing_keyseq: the full key sequence that ended up executing + a readline command. Available to the calling application, maintained + by _rl_dispatch_subseq, indexed by rl_key_sequence_length + - rl_executing_key: the key that was bound to the currently-executing + readline command. Same as the `key' argument to the function + +lib/readline/readline.h + - rl_executing_keyseq: extern declaration + - rl_executing_key: extern declaration + - rl_key_sequence_length: declaration moved here from rlprivate.h, + now part of public interface + +lib/readline/rlprivate.h + - new extern declaration for _rl_executing_keyseq_size, buffer size + for rl_executing_keyseq + +lib/readline/doc/rltech.texi + - documented new variables: rl_executing_key, rl_executing_keyseq, + rl_key_sequence_length + + 12/13 + ----- +bashline.c + - bash_execute_unix_command: replace ad-hoc code that searches + cmd_xmap for correct command with call to rl_function_of_keyseq + using rl_executing_keyseq; now supports key sequences longer + than two characters. Fixes bug reported by Michael Kazior + + + 12/15 + ----- +make_cmd.c + - make_function_def: don't null out source_file before calling + make_command so it can be used later on when the function definition + is executed + +execute_cmd.c + - execute_intern_function: second argument is now FUNCTION_DEF * + instead of COMMAND * + - execute_command_internal: call execute_intern_function with the + new second argument (the entire FUNCTION_DEF instead of just the + command member) + - execute_intern_function: if DEBUGGER is defined, call + bind_function_def before calling bind_function, just like + make_function_def does (might be able to take out the call in + make_function_def depending on what the debugger does with it). + Fixes bug reported by + +expr.c + - more minor changes to cases of INTMAX_MIN % -1 and INTMAX_MIN / 1; + fix typos and logic errors + + 12/16 + ----- +bashline.c + - find_cmd_start: change flags to remove SD_NOSKIPCMD so it skips over + command substitutions and doesn't treat them as command separators + - attempt_shell_completion: instead of taking first return from + find_cmd_name as command name to use for programmable completion, + use loop to skip over assignment statements. Fixes problem reported + by Raphael Droz + - attempt_shell_completion: if we don't find a command name but the + command line is non-empty, assume the other words are all assignment + statements and flag that point is in a command position so we can + do command name completion + - attempt_shell_completion: if the word being completed is the first + word following a series of assignment statements, and the + command line is non-empty, flag that point is in a command position + so we can do command name completion + +lib/readline/history.c + - history_get_time: atol -> strtol + + 12/18 + ----- +parse.y + - parser_in_command_position: external interface to the + command_token_position macro for use by other parts of the shell, + like the completion mechanism + +externs.h + - extern declaration for parser_in_command_position + + 12/19 + ----- + +builtins/read.def + - read_builtin: make sure all calls to bind_read_variable are passed + a non-null string. Fixes bug reported by Dan Douglas + + +bashline.c + - attempt_shell_completion: mark that we're in a command position if + we're at the start of the line and the parser is ready to accept + a reserved word or command name. Feature most recently suggested + by Peng Yu + + 12/21 + ----- +lib/readline/bind.c + - _rl_escchar: return the character that would be backslash-escaped + to denote the control character passed as an argument ('\n' -> 'n') + - _rl_isescape: return 1 if character passed is one that has a + backslash escape + - _rl_untranslate_macro_value: new second argument: use_escapes, if + non-zero translate to backslash escapes where possible instead of + using straight \C-x for control character `x'. Change callers + - _rl_untranslate_macro_value: now global + +lib/readline/rlprivate.h + - _rl_untranslate_macro_value: extern declaration + +lib/readline/{macro.c,readline.h} + - rl_print_last_kbd_macro: new bindable function, inspired by patch + from Mitchel Humpherys + +lib/readline/funmap.c + - print-last-kbd-macro: new bindable command, bound to + rl_print_last_kbd_macro + +lib/readline/doc/{rluser.texi,readline.3},doc/bash.1 + - print-last-kbd-macro: document. + +lib/readline/text.c + - _rl_insert_next: if we're defining a macro, make sure the key gets + added to the macro text (should really audit calls to rl_read_key() + and make sure the right thing is happening for all of them) + +bashline.[ch] + - print_unix_command_map: new function, prints all bound commands in + cmd_xmap using rl_macro_dumper in a reusable format + +builtins/bind.def + - new -X option: print all keysequences bound to Unix commands using + print_unix_command_map. Feature suggested by Dennis Williamson + (2/2011) + +doc/{bash.1,bashref.texi} + - document new `bind -X' option + + 12/24 + ----- + +doc/{bash.1,bashref.texi} + - add a couple of sentences to the description of the case modification + operators making it clearer that each character of parameter is + tested against the pattern, and that the pattern should only attempt + to match a single character. Suggested by Bill Gradwohl + + + 12/28 + ----- +shell.c + - init_noninteractive: instead of calling set_job_control(0) to + unconditionally turn off job control, turn on job control if + forced_interactive or jobs_m_flag is set + - shell_initialize: call initialize_job_control with jobs_m_flag as + argument so `bash -m script' enables job control while running the + script + +jobs.c + - initialize_job_control: if the `force' argument is non-zero, turn on + job control even if the shell is not currently interactive + (interactive == 0) + + 12/29 + ----- + +flags.h + - new extern declaration for jobs_m_flag + +builtins/{cd,set}.def,doc/{bash.1,bashref.texi} + - added text clarifying the descriptions of cd -L and -P, suggested by + Padraig Brady + - slight change to the description of `set -P' about resolving symbolic + links + +lib/readline/doc/rluser.texi + - Added an example to the programmable completion section: _comp_cd, + a completion function for cd, with additional verbiage. Text + includes a reference to the bash_completion project + + 1/1/2012 + -------- +jobs.c + - set_job_status_and_cleanup: note that a job is stopped due to + SIGTSTP (any_tstped) if job_control is set; there's no need to + test interactive + + 1/5 + --- +quit.h + - LASTSIG(): new macro, expands to signal number of last terminating + signal received (terminating_signal or SIGINT) + +trap.c + - first_pending_trap: returns lowest signal number with a trap pending + - trapped_signal_received: set to the last trapped signal the shell + received in trap_handler(); reset to 0 in run_pending_traps + +builtins/read.def + - read_builtin: changes to posix-mode (posixly_correct != 0) to make + `read' interruptible by a trapped signal. After the trap runs, + read returns 128+sig and does not assign the partially-read line + to the named variable(s). From an austin-group discussion started + by David Korn + + 1/11 + ---- +doc/{bash.1,bashref.texi} + - slight changes to the descriptions of the compat32 and compat40 shell + options to clarify their meaning + + 1/12 + ---- +lib/readline/{colors.[ch],parse-colors.[ch]} + - new files, part of color infrastructure support + +Makefile.in,lib/readline/Makefile.in + - arrange to have colors.o and parse-colors.o added to readline + library + +{configure,config.h}.in + - check for stdbool.h, define HAVE_STDBOOL_H if found + + 1/14 + ---- +lib/readline/bind.c + - colored_stats: new bindable variable, enables using colors to + indicate file type when listing completions + +lib/readline/complete.c + - _rl_colored_stats: new variable, controlled by colored-stats bindable + variable + - colored_stat_start, colored_stat_end: new functions to set and reset + the terminal color appropriately depending on the type of the + filename to be printed + - print_filename: changes to print colors if `colored-stats' variable + set. Changes contributed by Raphael Droz + + +lib/readline/readline.c + - rl_initialize_everything: add call to _rl_parse_colors to parse + color values out of $LS_COLORS. May have to add to rl_initialize + to make more dynamic if LS_COLORS changes (which doesn't happen + very often, if at all) + +lib/readline/rlprivate.h + - _rl_colored_stats: new extern declaration + +lib/readline/doc/{readline.3,rluser.texi},doc/bash.1 + - colored-stats: document new bindable readline variable + +lib/readline/colors.c + - _rl_print_color_indicator: call rl_filename_stat_hook before calling + lstat/stat so we can get color indicators for stuff like + $HOME/Applications + +lib/readline/complete.c + - stat_char: call rl_filename_stat_hook before calling lstat/stat + +findcmd.[ch],execute_cmd.c + - search_for_command: now takes a second `flags' argument; changed + header function prototype and callers + - search_for_command: if (flags & 1), put the command found in $PATH + into the command hash table (previous default behavior) + +execute_cmd.c + - is_dirname: call search_for_command with flags argument of 0 so it + doesn't try to put something in the command hash table + +bashline.c + - bash_command_name_stat_hook: a hook function for readline's + filename_stat_hook that does $PATH searching the same way that + execute_cmd.c:execute_disk_command() does it, and rewrites the + passed filename if found. Does not put names into command hash + table. This allows command name completion to take advantage + of `visible-stats' and `colored-stats' settings. + - executable_completion: new function, calls the directory completion + hook to expand the filename before calling executable_file or + executable_or_directory; change command_word_completion_function to + call executable_completion. This allows $HOME/bin/[TAB] to do + command completion and display alternatives + + 1/17 + ---- +pcomplete.c + - gen_command_matches: now takes a new second argument: the command + name as deciphered by the programmable completion code and used + to look up the compspec; changed callers (gen_compspec_completions) + - gen_shell_function_matches: now takes a new second argument: the + command that originally caused the completion function to be + invoked; changed callers (gen_compspec_completions)) + - build_arg_list: now takes a new second argument: the command name + corresponding to the current compspec; changed callers + (gen_command_matches, gen_shell_function_matches) + - build_arg_list: now uses `cmd' argument to create $1 passed to + invoked command or shell function + - gen_compspec_completions: if we skipped a null command at the + beginning of the line (e.g., for completing `>'), add a new word for + it at the beginning of the word list and increment nw and cw + appropriately. This is all a partial fix for the shortcoming + pointed out by Sung Pae + + 1/18 + ---- + +{configure,config.h}.in + - new check: check for AUDIT_USER_TTY defined in , + define HAVE_DECL_AUDIT_USER_TTY if both are found + +lib/readline/rlconf.h + - ENABLE_TTY_AUDIT_SUPPORT: new define, allows use of the Linux kernel + tty auditing system if it's available and enabled + +lib/readline/util.c + - _rl_audit_tty: new function, send a string to the kernel tty audit + system + +lib/readline/rlprivate.h + - _rl_audit_tty: new extern declaration + +lib/readline/readline.c + - readline: call _rl_audit_tty with line to be returned before returning + it if the Linux tty audit system is available and it's been enabled + in rlconf.h Original patch from Miroslav Trmac; recent request + from Miroslav Lichvar + + 1/21 + ---- + +lib/readline/readline.c: + - _rl_dispatch_subseq: add an inter-character timeout for multi-char + key sequences. Suggested by . Still needs + work to make a user-settable variable + +parse.y + - shell_getc: make code that uses the pop_alias dependent on ALIAS + define + +variables.h + - sv_tz: extern define should only depend on HAVE_TZSET + +expr.c + - expr_streval: if ARRAY_VARS is not defined, set lvalue->ind to -1; + move assignment to `ind' inside define + - expr_bind_array_element: declaration and uses need to be #ifdef + ARRAY_VARS + +arrayfunc.h + - AV_ALLOWALL, AV_QUOTED, AV_USEIND: define to 0 if ARRAY_VARS not + defined; used in subst.c unconditionally + +sig.h + - make the signal blocking functions not dependent on JOB_CONTROL + +sig.c + - sigprocmask: make the replacement definition not dependent on + JOB_CONTROL + +trap.c + - use BLOCK_SIGNAL/UNBLOCK_SIGNAL instead of code dependent on + HAVE_POSIX_SIGNALS and BSD signals + + 1/24 + ---- + +print_cmd.c + - print_redirection_list: change the conditions under which + r_duplicating_output_word is mapped to r_err_and_out to more or + less match those used in redir.c. Fixes bug pointed out by + Dan Douglas + + + 1/29 + ---- +lib/readline/signals.c + - _rl_block_sigwinch,_rl_release_sigwinch: don't compile in bodies + unless SIGWINCH is defined. Fixes bug reported by Pierre Muller + + +doc/{bash.1,bashref.texi} + - small modifications to the introduction to the REDIRECTION section + to describe how redirections can modify file handles + - small modification to the section describing base#n to make it + clearer that n can be denoted using non-numerics. From a posting + by Linda Walsh + + 2/2 + --- +builtins/printf.def + - printf_builtin: make sure vbuf is intialized and non-null when -v + is supplied, since other parts of the code assume that it's not + null (e.g., bind_printf_variable()). Fixes bug reported by Jim + Avera + + 2/4 + --- +lib/readline/undo.c + - _rl_free_undo_list: new function, old body of rl_free_undo_list, + frees undo entries in UNDO_LIST * passed as argument + - rl_free_undo_list: call _rl_free_undo_list + +lib/readline/rlprivate.h + - _rl_free_undo_list: new extern declaration + - _rl_keyseq_timeout: new extern declaration (see below) + +lib/readline/misc.c + - rl_clear_history: new function. Clears the history list and frees + all associated data similar to history.c:clear_history(), but + takes rl_undo_list into account and frees and UNDO_LISTs saved as + `data' members of a history list entry + +lib/readline/doc/rltech.texi + - rl_clear_history: documented + +lib/readline/readline.c + - _rl_keyseq_timeout: new variable to hold intra-key timeout value + from 1/21 fix; specified in milliseconds. Default value is 500 + - _rl_dispatch_subseq: change to use _rl_keyseq_timeout as intra-key + timeout if it's greater than 0; no timeout if <= 0 + - _rl_dispatch_subseq: don't check for queued keyboard input if we have + pushed or pending input, or if we're reading input from a macro + +lib/readline/bind.c + - keyseq-timeout: new bindable variable, shadows _rl_keyseq_timeout + - string_varlist: add keyseq-timeout + - sv_seqtimeout: new function to modify value of _rl_keyseq_timeout; + clamps negative values at 0 for now + - _rl_get_string_variable_value: return value for keyseq-timeout + +doc/bash.1,lib/readline/doc/{rluser.texi,readline.3} + - keyseq-timeout: documented + +lib/readline/isearch.c + - _rl_isearch_dispatch: modification to fix from 7/18 to not use + cxt->keymap and cxt->okeymap, since by the time this code is + executed, they are equal. Use `f' to check for rl_insert or + unbound func + - _rl_isearch_dispatch: if we're switching keymaps, not in + callback mode, and don't have pending or pushed input, use + _rl_input_queued to resolve a potentially ambiguous key sequence. + Suggested by Roger Zauner + - _rl_isearch_dispatch: if we have changed keymaps and resolved to + an editing function (not self-insert), make sure we stuff the + right characters back onto the input after changing the keymap + back so the right editing function is executed after the search + is terminated. Rest of fix for bug reported by Roger Zauner + + + 2/5 + --- +builtins/gen-helpfiles.c + - new file: reads struct builtin and writes the long docs to files + in the `helpdirs' subdirectory. The filename is given in the + previously-unused `handle' member of the struct builtin. Links + with `tmpbuiltins.o', which is created by Makefile to have the + right long documentation. When not cross-compiling, gets the + right #defines based on configuration options from config.h instead + of trying to parse conditional parts of def files. Fixes + shortcoming pointed out by Andreas Schwab + +builtins/Makefile.in + - tmpbuiltins.c: new generated file, created to enable creation of + separate helpfiles based on correct #defines instead of trying to + parse conditional parts of def files + - gen-helpfiles: new program to generate helpfiles, links with + tmpbuiltins.o + - HELPFILES_TARGET: new target, substituted by configure to `helpdoc' + if separate helpfiles requested + - targets: new target, libbuiltins.a and $(HELPFILES_TARGET) + - CREATED_OBJECTS: new variable, holds created object files for + make clean; changed make clean to remove created objects + - helpdoc: changed to call gen-helpfiles instead of mkbuiltins + +Makefile.in + - when building libbuiltins.a, recursively call make with `targets' + argument to make sure separate helpfiles get built + +configure.in + - substitute `helpdoc' as value of HELPFILES_TARGET if + --enable-separate-helpfiles supplied as configure argument + +builtins/mkbuiltins.c + - `-nofunctions': new argument, causes mkbuiltins to not write value + for function implementing a particular builtin to struct builtin + and to write document file name to `handle' member of struct builtin + - no longer writes separate helpfiles; that is left to gen-helpfiles + + 2/8 + --- +subst.c + - make sure last_command_exit_value is set to a non-zero value before + any calls to report_error, since `-e' set will short-circuit + report_error. Fixes bug reported by Ewan Mellor + + +variables.c + - make_local_array_variable: added second argument; if non-zero, + function will return an existing local associative array variable + instead of insisting on an indexed array + +variable.h,subst.c + - make_local_array_variable: changed prototype and caller + +builtins/declare.def + - declare_internal: add second arg to call to make_local_array_variable; + making_array_special, which indicates we're processing an + assignment like declare a[b]=c. Fixes seg fault resulting from + a being an already-declared local associative array variable in a + function. Ubuntu bash bug 928900. + + 2/14 + ---- + +execute_cmd.c + - execute_command_internal: if redirections into or out of a loop fail, + don't try to free ofifo_list unless saved_fifo is non-zero. It's + only valid if saved_fifo is set + + 2/15 + ---- +{arrayfunc,braces,variables}.c + - last_command_exit_value: make sure it's set before any calls to + report_error, since -e will cause that to exit the shell + +builtins/common.c + - get_job_by_name: call internal_error instead of report_error so this + doesn't exit the shell + + 2/18 + ---- +builtins/evalstring.c + - parse_and_execute: make sure the file descriptor to be redirected to + is 1 before calling cat_file. One fix for bug reported by Dan Douglas + + +parse.y + - read_token_word: don't return NUMBER if a string of all digits + resolves to a number that overflows the bounds of an intmax_t. + Other fix for bug reported by Dan Douglas + + 2/19 + ---- +lib/sh/strtrans.c + - ansicstr: use 0x7f as the boundary for characters that translate + directly from ASCII to unicode (\u and \U escapes) instead of + UCHAR_MAX, since everything >= 0x80 requires more than one byte. + Bug and fix from John Kearney + +builtins/printf.def + - tescape: ditto for printf \u and \U escape sequences + + 2/20 + ---- +lib/sh/unicode.c + - u32toutf8: fix to handle encodings up to six bytes long correctly + (though technically UTF-8 only has characters up to 4 bytes long). + Report and fix from John Kearney + - u32toutf8: first argument is now an unsigned 32-bit quantity, + changed callers (u32cconv) to pass c instead of wc + - u32reset: new function, resets local static state to uninitialized + (locale information, currently) + +locale.c + - call u32reset whenever LC_CTYPE/LC_ALL/LANG is changed to reset the + cached locale information used by u32cconv. From a report from + John Kearney + + 2/21 + ---- +doc/{bash,builtins}.1 + - minor changes from Bjarni Ingi Gislason + +lib/sh/unicode.c + - u32cconv: only assume you can directly call wctomb on the passed + value if __STDC_ISO_10646__ is defined and the value is <= + 0x7fffffff + - stub_charset: return locale as default instead of "ASCII", let + rest of code decide what to do with it + +lib/readline/parens.c + - _rl_enable_paren_matching: make paren matching work in vi insert + mode. Bug report from + + 2/22 + ---- +lib/sh/shquote.c + - sh_backslash_quote: quote tilde in places where it would be + expanded. From a report from John Kearney + + 2/23 + ---- +execute_cmd.c + - execute_pipeline: wrap the discard_unwind_frame call in #ifdef + JOB_CONTROL, since the frame is only created if JOB_CONTROL is + defined. Bug and fix from Doug Kehn + + 2/25 + ---- +error.c + - report_error: make sure last_command_exit_value is non-zero before + we call exit_shell, since the exit trap may reference it. Call + exit_shell with last_command_exit_value to allow exit statuses + other than 1 + +unicode.c + - stub_charset: use local static buffer to hold charset, don't change + value returned by get_locale_var. Based on idea and code from + John Kearney + - u32toutf16: function to convert unsigned 32-bit value (unicode) to + UTF-16. From John Kearney + - u32cconv: call u32toutf16 if __STDC_ISO_10646__ defined and wchar_t + is two bytes, send result to wcstombs, return if not encoding error. + From John Kearney + - u32cconv: return UTF-8 conversion if iconv conversion to local + charset is unsupported + + 3/2 + --- +lib/readline/complete.c + - print_filename: if there is no directory hook, but there is a stat + hook, and we want to append a slash to directories, call the stat + hook before calling path_isdir on the expanded directory name. + Report and pointer to fix from Steve Rago + + 3/3 + --- +builtins/evalstring.c + - parse_and_execute: fix to change of 2/18: make sure the file + descriptor being redirected to is 0 before calling cat_file when + we see something like $(< file). Real fix for bug reported by + Dan Douglas + +subst.c + - parameter_brace_patsub: run the replacement string through quote + removal even if the expansion is within double quotes, because + the parser and string extract functions treat the quotes and + backslashes as special. If they're treated as special, quote + removal should remove them (this is the Posix position and + compatible with ksh93). THIS IS NOT BACKWARDS COMPATIBLE. + + 3/4 + --- +lib/readline/complete.c + - rl_menu_complete: fix to make show-all-if-ambiguous and + menu-complete-display-prefix work together if both are set. Fix + from Sami Pietila + + 3/5 + --- +bashline.c + - dircomplete_expand_relpath: new variable, if non-zero, means that + `shopt -s direxpand' should expand relative pathnames. Zero by + default, not user-settable yet + - bash_directory_completion_hook: if we have a relative pathname that + isn't changed by canonicalization or spell checking after being + appended to $PWD, then don't change what the user typed. Controlled + by dircomplete_expand_relpath + + 3/7 + --- +m4/timespec.m4 + - new macros, cribbed from gnulib and coreutils: find out whether we + have `struct timespec' and what file includes it + +m4/stat-time.m4 + - new macros, cribbed from gnulib and coreutils: find out whether the + mtime/atime/ctime/etctime fields of struct stat are of type + struct timespec, and what the name is + +include/stat-time.h + - new file, cribbed from gnulib, with additions from coreutils: include + the right file to get the struct timespec define, or provide our own + replacement. Provides a bunch of inline functions to turn the + appropriate members of struct stat into `struct timespec' values, + zeroing out the tv_nsec field if necessary + +test.c + - include "stat-time.h" for the nanosecond timestamp resolution stuff + - stat_mtime: new function, returns struct stat and the mod time + normalized into a `struct timespec' for the filename passed as the + first argument + - filecomp: call stat_mtime instead of sh_stat for each filename + argument to get the mtime as a struct timespec + - filecomp: call timespec_cmp instead of using a straight arithmetic + comparison for the -nt and -ot operators, using timespec returned by + stat_mtime. Added functionality requested by by Werner Fink + for systems that can support it + + 3/10 + ---- +include/posixdir.h + - REAL_DIR_ENTRY: remove dependency on _POSIX_SOURCE, only use feature + test macros to decide whether dirent.d_ino is present and usable; + define D_INO_AVAILABLE. Report and fix from Fabrizion Gennari + + - D_FILENO_AVAILABLE: define if we can use dirent.d_fileno + +lib/sh/getcwd.c + - use D_FILENO_AVAILABLE to decide whether or not to compile in + _path_checkino and whether or not to call it. Report and initial + fix from Fabrizion Gennari + +lib/readline/signals.c + - make sure all occurrences of SIGWINCH are protected by #ifdef + +sig.c + - make sure all occurrences of SIGCHLD are protected by #ifdef + +nojobs.c + - make sure SA_RESTART is defined to 0 if the OS doesn't define it + +version.c + - show_shell_version: don't use string literals in printf, use %s. + Has added benefit of removing newline from string to be translated + +trap.c + - queue_sigchld_trap: new function, increments the number of pending + SIGCHLD signals by the argument, which is by convention the number + of children reaped in a call to waitchld() + +trap.h + - queue_sigchld_trap: new extern declaration + +jobs.c + - waitchld: if called from the SIGCHLD signal handler (sigchld > 0), + then call queue_sigchld_trap to avoid running the trap in a signal + handler context. Report and original fix from Siddhesh Poyarekar + + +lib/sh/unicode.c + - u32tocesc: take an unsigned 32-bit quantity and encode it using + ISO C99 string notation (\u/\U) + - u32cconv: call u32tocesc as a fallback instead of u32cchar + - u32cconv: call u32tocesc if iconv cannot convert the character. + Maybe do the same thing if iconv_open fails + - u32reset: call iconv_close on localconv if u32init == 1 + + 3/11 + ---- +config-top.h + - CHECKWINSIZE_DEFAULT: new define, set to initial value of + check_window_size (shopt checkwinsize): 0 for off, 1 for on. + Default is 0 + +{jobs,nojobs}.c + - check_window_size: default initial value to CHECKWINSIZE_DEFAULT + + 3/13 + ---- +doc/bashref.texi + - change text referring to the copying restrictions to that + recommended by the FSF (no Front-Cover Texts and no Back-Cover + Texts) + +lib/readline/doc/{history,rlman,rluserman}.texi + - change text referring to the copying restrictions to that + recommended by the FSF (no Front-Cover Texts and no Back-Cover + Texts) + + 3/15 + ---- +array.c + - LASTREF_START: new macro to set the starting position for an array + traversal to `lastref' if that's valid, and to the start of the array + if not. Used in array_reference, array_insert, array_remove + - array_remove: try to be a little smarter with lastref instead of + unconditionally invalidating it + + 3/16 + ---- +array.c + - array_insert: fix memory leak by deleting element to be added in the + case of an error + + 3/18 + ---- +lib/sh/mbschr.c + - mbschr: don't call mbrlen unless is_basic is false; devolves to a + straight character-by-character run through the string + + 3/19 + ---- +stringlib.c + - substring: use memcpy instead of strncpy, since we know the length + and are going to add our own NUL terminator + + 3/20 + ---- +subst.c + - parameter_brace_expand_rhs: if expand_string_for_rhs returns a quoted + null string (a list with one element for which + QUOTED_NULL(list->word->word) returns true), return the quoted null + and set the flags in the returned word to indicate it. Fixes bug + reported by Mark Edgar + +lib/sh/tmpfile.c + - use random(3) instead of get_random_number to avoid perturbing the + random sequence you get using $RANDOM. Bug report and fix from + Jurij Mihelic + + 3/21 + ---- +config-top.h + - OPTIMIZE_SEQUENTIAL_ARRAY_ASSIGNMENT: define to 1 to optimize + sequential indexed array assignment patterns. Defined to 1 by + default + +array.c + - array_insert: if OPTIMIZE_SEQUENTIAL_ARRAY_ASSIGNMENT is defined, + start the search at lastref (see change from 3/15) + + 3/27 + ---- +print_cmd.c + - debug_print_word_list: new debugging function, prints a word list + preceded by an optional string and using a caller-specified + separator + + 4/1 + --- +command.h + - W_ASSNGLOBAL: new flag, set to indicate declare -g + +execute_cmd.c + - fix_assignment_words: note that we have a -g argument to an assignment + builtin and set the W_ASSNGLOBAL flag in the variable word + +subst.c + - dump_word_flags: print out W_ASSNGLOBAL if present + - do_assignment_internal: only set ASS_MKLOCAL if W_ASSIGNARG is set + and W_ASSNGLOBAL is not. Don't want to create a local variable even + if variable_context is non-zero if ASSNGLOBAL is set. Fixes bug + reported by Bill Gradwohl + + 4/7 + --- +lib/readline/readline.c + - _rl_dispatch_subseq: make the `keyseq-timeout' variable apply to + ESC processing when in vi mode. After hitting ESC, readline will + wait up to _rl_keyseq_timeout*1000 microseconds (if set) for + additional input before dispatching on the ESC and switching to + command/movement mode. Completes timeout work suggested by + ; this prompted by report from Barry Downes + + +lib/sh/shmbchar.c + - sh_mbsnlen: new function, returns the number of (possibly multibyte) + characters in a passed string with a passed length, examining at most + maxlen (third argument) bytes + +externs.h + - sh_mbsnlen: extern declaration for new function + +shell.c + - exit_shell: call maybe_save_shell_history if remember_on_history is + set, not just in interactive shells. That means the history is + saved if history is enabled, regardless of whether or not the shell + is interactive + +doc/{bash.1,bashref.texi} + - TMOUT: fix description to make it explicit that TMOUT is the timeout + period for a complete line of input, not just any input. Fixes + problem reported in Ubuntu bug 957303: + https://bugs.launchpad.net/ubuntu/+source/bash/+bug/957303 + - HISTFILE: document change to write history list to history file in + any shell with history enabled, not just interactive shells. This + seems to be more logical behavior. Suggested by Greg Wooledge + + + 4/12 + ---- +lib/readline/colors.h + - only include stdbool.h if HAVE_STDBOOL_H is defined + - if HAVE_STDBOOL_H is not defined, provide enough definition for the + library to use `bool', `true', and `false' + +lib/readline/parse-colors.[ch] + - don't try to include at all; rely on colors.h to do it + +lib/sh/snprintf.c + - vsnprintf_internal: only treat '0' as a flag to indicate zero padding + if `.' hasn't been encountered ((flags&PF_DOT) == 0); otherwise treat + it as the first digit of a precision specifier. Fixes bug reported + by Petr Sumbera + + 4/15 + ---- +lib/sh/snprintf.c + - vsnprintf_internal: if the '0' and '-' flags both occur, the '0' + flag is ignored -- Posix. Start of a series of fixes based on + tests and patches from Petr Sumbera + - PUT_PLUS: make sure PF_PLUS flag is specified before putting the `+' + - vsnprintf_internal: when '+' is read as a flag, don't set right- + justify flag if the LADJUST (`-') flag has already been supplied + - floating: make sure to output space padding before the `+', zero + padding after + - exponent: make sure to output space padding before the `+', zero + padding after + - exponent: only subtract one from the width for the decimal point + if we're really going to print one + - floating: use presence of PF_PLUS flag to decide whether to account + for the `+' in the padded field width. Ditto for exponent() + + 4/16 + ---- +lib/sh/snprintf.c + - vsnprint_internal: only reduce precision by 1 when processing the `g' + format if it's > 0. A precision of 0 should stay 0; otherwise it + gets set to -1 (NOT_FOUND) and converted to the default + - number, lnumber: if an explicit precision is supplied, turn off the + zero-padding flag and set the pad character back to space + - number, lnumber: only account for a `+' when performing the field + width calculation if the coversion is base 10; we don't add a `+' + for other bases + + 4/18 + ---- +tests/printf3.sub + - try using "perl -e 'print time'" to get the current time in seconds + since the epoch if "date +%s" is not available (solaris 8-10) + + 4/19 + ---- +tests/run-printf + - use cat -v instead of relying on diff -a being available to convert + control characters to ascii and avoid the dreaded "Binary files + /tmp/xx and printf.right differ" + + 4/20 + ---- +lib/sh/strftime.c + - incoporated new version from Aharon Robbins + + 4/22 + ---- +doc/{bash.1,bashref.texi} + - slight change to the description of /dev/tcp and /dev/udp + +subst.c + - match_wpattern: logic fix to the calculation of `simple' (was |=, + needs to be &=). Bug report from Mike Frysinger , + fix from Andreas Schwab + +bashline.c + - bash_filename_stat_hook: add code from bash_directory_completion_hook + that performs pathname canonicalization in the same way that cd and + other builtins will do + + 4/25 + ---- +execute_cmd.c + - execute_pipeline: change the call to move_to_high_fd to make it use + getdtablesize() and to not stomp on existing open file descriptors, + like the fd the shell is using to read a script. Bug report from + Greg Wooledge + + 5/6 + --- +subst.c + - expand_word_internal: case '$': after calling param_expand and + setting had_quoted_null, set TEMP to null. The code that builds the + returned string at the end of the function will take care of making + and returning a quoted null string if there's nothing else in + ISTRING. If there is, the quoted null should just go away. Part of + fix for bug reported by Ruediger Kuhlmann + - expand_word_internal: when processing ISTRING to build return value, + only set W_HASQUOTEDNULL in the returned word flags if the word is + a quoted null string AND had_quoted_null is set. Rest of fix + + 5/9 + --- +variables.c + - bind_variable_internal: if we get an array variable here (implicit + assignment to index 0), call make_array_variable_value, which + dummies up a fake SHELL_VAR * from array[0]. This matters when + we're appending and have to use the current value + - bind_variable_internal: after computing the new value, treat assoc + variables with higher precedence than simple array variables; it + might be that a variable has both attributes set + +arrayfunc.c + - bind_array_var_internal: break code out that handles creating the + new value to be assigned to an array variable index into a new + function, make_array_variable_value. This handles creating a + dummy SHELL_VAR * for implicit array[0] assignment. Fixes bug + reported by Dan Douglas + +arrayfunc.h + - make_array_variable_value: new extern declaration + + 5/19 + ---- +variables.c + - bind_int_variable: if an assignment statement like x=y comes in + from the expression evaluator, and x is an array, handle it like + x[0]=y. Fixes bug reported by Dan Douglas + + 5/24 + ---- + +braces.c + - mkseq: handle possible overflow and break the sequence generating + loop if it occurs. Fixes OpenSUSE bug 763591: + https://bugzilla.novell.com/show_bug.cgi?id=763591 + + 5/25 + ---- +Makefile.in + - LDFLAGS_FOR_BUILD: add to compilation recipes for build tools + buildversion, mksignames, mksyntax + - LDFLAGS_FOR_BUILD: add to compilation recipes for test tools + recho, zecho, printenv, xcase + +builtins/Makefile.in + - LDFLAGS_FOR_BUILD: add to compilation recipes for build tools + gen-helpfiles, psize.aux + +variables.c + - bind_int_variable: if LHS is a simple variable name without an array + reference, but resolves to an array variable, call + bind_array_variable with index 0 to make x=1 equivalent to x[0]=1. + Fixes bug reported by Dan Douglas + + 5/27 + ---- +subst.c + - expand_word_internal: make sure has_dollar_at doesn't get reset before + recursive calls to param_expand or expand_word_internal, since it has + to save state of what came before. Use temp variable and make sure + has_dollar_at is incremented if recursive call processes "$@". + Fixes bug reported by gregrwm and + supplemented by Dan Douglas + +doc/{bash.1,bashref.texi} + - changes to the description of substring expansion inspired by + suggestions from Bill Gradwohl + +doc/bashref.texi + - added substring expansion examples inspired by suggestions from + Bill Gradwohl + +variables.c + - find_shell_variable: search for a variable in the list of shell + contexts, ignore the temporary environment + - find_variable_tempenv: search for a variable in the list of shell + contexts, force search of the temporary environment + - find_variable_notempenv: search for a variable in the list of shell + contexts, don't force search of the temporary environment + +variables.h + - find_shell_variable: extern declaration + - find_variable_tempenv: extern declaration + - find_variable_notempenv: extern declaration + +arrayfunc.c + - bind_array_variable: call find_shell_variable instead of calling + var_lookup directly + +findcmd.c + - search_for_command: call find_variable_tempenv instead of + find_variable_internal directly + - _find_user_command_internal: call find_variable_tempenv instead of + find_variable_internal directly + +builtins/setattr.def + - set_var_attribute: call find_variable_notempenv instead of + find_variable_internal directly + - show_name_attributes: call find_variable_tempenv instead of + find_variable_internal directly + + 6/1 + --- +sig.c + - termsig_handler: don't try to save the shell history on a terminating + signal any more, since it just causes too many problems on Linux + systems using glibc and glibc malloc + +lib/readline/vi_mode.c + - rl_vi_change_to: change to correctly redo `cc', since `c' is not a vi + motion character. From Red Hat bug 813289 + - rl_vi_delete_to: change to correctly redo `dd', since `d' is not a vi + motion character + - rl_vi_yank_to: change to correctly redo `yy', since `y' is not a vi + motion character + + 6/4 + --- +lib/sh/mktime.c + - current versions of VMS do not need to include . Fix from + John E. Malmberg + + 6/5 + --- +lib/sh/eaccess.c + - sh_stat: instead of using a static buffer to do the DEV_FD_PREFIX + translation, use a dynamically-allocated buffer that we keep + resizing. Fixes potential security hole reported by David Leverton + + + 6/5 + --- +braces.c + - expand_seqterm: check errno == ERANGE after calling strtoimax for + rhs and incr. Part of a set of fixes from Scott McMillan + + - expand_seqterm: incr now of type `intmax_t', which changes + arguments to mkseq + - mkseq: a better fix for detecting overflow and underflow since it's + undefined in C and compilers `optimize' out overflow checks. Uses + ADDOVERFLOW and SUBOVERFLOW macros + - mkseq: use sh_imaxabs (new macro) instead of abs() for intmax_t + variables + - mkseq: don't allow incr to be converted to -INTMAX_MIN + - mkseq: make sure that strvec_create isn't called with a size argument + greater than INT_MAX, since it only takes an int + + 6/6 + --- +braces.c + - mkseq: try and be smarter about not overallocating elements in + the return array if the increment is not 1 or -1 + + 6/7 + --- +parse.y + - history_delimiting_chars: if the parser says we're in the middle of + a compound assignment (PST_COMPASSIGN), just return a space to avoid + adding a stray semicolon to the history entry. Fixes bug reported + by "Davide Brini" + + 6/8 + --- +bashline.c + - bash_directory_completion_hook: don't attempt spelling correction + on the directory name unless the direxpand option is set and we are + going to replace the directory name with the corrected one in the + readline line. Suggested by Linda Walsh + +lib/sh/shquote.c + - sh_backslash_quote: now takes a third argument: flags. If non-zero, + tildes are not backslash-escaped. Have to handle both printf %q, + where they should be escaped, and filename completion, where they + should not when used as usernames + +externs.h + - sh_backslash_quote: declaration now takes a third argument + +builtins/printf.def + - printf_builtin: call sh_backslash_quote with 1 as third argument + so tildes get escaped + +{bashline,bracecomp}.c + - call sh_backslash_quote with 0 as third argument so tildes are not + escaped in completed words + +doc/bash.1 + - add `coproc' to the list of reserved words. From a report by + Jens Schweikhardt + + 6/10 + ---- +execute_cmd.c + - line_number_for_err_trap: now global, so parse_and_execute can save + and restore it with unwind-protect + +builtins/evalstring.c + - parse_prologue: save and restore line_number_for_err_trap along + with line_number + - restore_lastcom: new function, unwind-protect to restore + the_printed_command_except_trap + - parse_prologue: use restore_lastcom to save and restore the value + of the_printed_command_except_trap around calls to parse_and_execute + (eval/source/.) + + 6/15 + ---- +lib/readline/complete.c + - complete_fncmp: change filename comparison code to understand + multibyte characters, even when doing case-sensitive or case-mapping + comparisons. Fixes problem reported by Nikolay Shirokovskiy + + + 6/20 + ---- +builtins/mapfile.def + - mapfile: move the line count increment and check for having read + the specified number of lines to the end of the loop to avoid + reading an additional line with zgetline. Fixes bug reported by + Dan Douglas + + 6/21 + ---- + +execute_cmd.c + - execute_pipeline: make sure `lastpipe_flag' is initialized to 0 on + all systems, since it's tested later in the function. Fixes bug + reported by John E. Malmberg + + 6/22 + ---- +mailcheck.c + - file_mod_date_changed: return 0 right away if mailstat() does not + return success. Fixes bug with using uninitialized values reported + by szymon.kalasz@uj.edu.pl + +builtins/set.def + - the `monitor' option is not available when the shell is compiled + without job control, since the underlying `m' flag is not available + +nojobs.c + - job_control: now declared as int variable, initialized to 0, never + modified + +jobs.h + - job_control: extern declaration no longer dependent on JOB_CONTROL + +execute_cmd.c + - execute_pipeline: made necessary changes so `lastpipe' shell option + is now available in all shells, even those compiled without + JOB_CONTROL defined + + 6/23 + ---- +lib/glob/glob.c + - glob_filename: check for interrupts before returning if glob_vector + returns NULL or an error. Bug reported by Serge van den Boom + , fix from Andreas Schwab + - call run_pending_traps after each call to QUIT or test of + interrupt_state, like we do in mainline shell code + - glob_vector: don't call QUIT; in `if (lose)' code block; just free + memory, return NULL, and let callers deal with interrupt_state or + other signals and traps + + 6/25 + ---- +lib/readline/input.c + - rl_read_key: restructure the loop that calls the event hook a little, + so that the hook is called only after rl_gather_tyi returns no input, + and any pending input is returned first. This results in better + efficiency for processing pending input without calling the hook + on every input character as bash-4.1 did. From a report from + Max Horn + + 6/26 + ---- +trap.c + - signal_is_pending: return TRUE if SIG argument has been received and + a trap is waiting to execute + +trap.h + - signal_is_pending: extern declaration + +lib/glob/glob.c + - glob_vector: check for pending SIGINT trap each time through the loop, + just like we check for interrupt_state or terminating_signal, and + set `lose = 1' so we clean up after ourselves and interrupt the + operation before running the trap. This may require a change later, + maybe call run_pending_traps and do that if run_pending_traps returns? + +variables.c + - sv_histtimefmt: set history_comment_character to default (`#') if + it's 0 when we're turning on history timestamps. The history code + uses the history comment character to prefix timestamps, and + leaving it at 0 effectively removes them from the history. From a + report to help-bash by Dennis Williamson + + 6/27 + ---- +lib/readline/signals.c + - rl_maybe_restore_sighandler: new function, sets handler for SIG to + HANDLER->sa_handler only if it's not SIG_IGN. Needs to be called + on same signals set using rl_maybe_set_sighandler, which does not + override an existing SIG_IGN handler (SIGALRM is ok since it does + the check inline; doesn't mess with SIGWINCH) + + 6/30 + ---- +variables.h + - additional defines for the new `nameref' variable attribute + (att_nameref): nameref_p, nameref_cell, var_setref + +variables.c + - find_variable_nameref: resolve SHELL_VAR V through chain of namerefs + - find_variable_last_nameref: resolve variable NAME until last in a + chain of possibly more than one nameref starting at shell_variables + - find_global_variable_last_nameref: resolve variable NAME until last + in a chain of possibly more than one nameref starting at + global_variables + - find_nameref_at_context: resolve SHELL_VAR V through chain of namerefs + in a specific variable context (usually a local variable hash table) + - find_variable_nameref_context: resolve SHELL_VAR V through chain of + namerefs following a chain of varible contexts + - find_variable_last_nameref_context: resolve SHELL_VAR V as in + find_variable_last_context, but return the final nameref instead of + what the final nameref resolves to + - find_variable_tempenv, find_variable_notempenv, find_global_variable, + find_shell_variable, find_variable: modified to follow namerefs + - find_global_variable_noref: look up a global variable without following + any namerefs + - find_variable_noref: look up a shell variable without following any + namerefs + - bind_variable_internal: modify to follow a chain of namerefs in the + global variables table; change to handle assignments to a nameref by + following nameref chain + - bind_variable: modify to follow chain of namerefs when binding to a + local variable + - unbind_variable: changes to unset nameref variables (unsets both + nameref and variable it resolves to) + +subst.c + - parameter_brace_expand_word: change to handle expanding nameref whose + value is x[n] + - parameter_brace_expand_indir: change to expand in ksh93-compatible + way if variable to be indirected is nameref and a simple (non-array) + expansion + - param_expand: change to expand $foo where foo is a nameref whose value + is x[n] + +execute_cmd.c + - execute_for_command: changes to implement ksh93 semantics when index + variable is a nameref + +builtins/setattr.def + - show_var_attributes: change to add `n' to flags list if att_nameref + is set + +builtins/set.def + - unset_builtin: changes to error messages to follow nameref variables + +builtins/declare.def + - document new -n option + - declare_internal: new `-n' and `+n' options + - declare_internal: handle declare -n var[=value] and + declare +n var[=value] for existing and non-existant variables. + Enforce restriction that nameref variables cannot be arrays. + Implement semi-peculiar ksh93 semantics for typeset +n ref=value + + 7/5 + --- +variables.c + - unbind_variable: unset whatever a nameref resolves to, leaving the + nameref variable itself alone + - unbind_nameref: new function, unsets a nameref variable, not the + variable it references + +variables.h + - unbind_nameref: extern declaration + +builtins/set.def + - unset_builtin: modify to add -n option, which calls unbind_nameref + leaving unbind_variable for the usual case. This required slight + changes and additions to the test suite + +doc/{bash.1,bashref.texi} + - document namerefs and typeset/declare/local/unset -n + + 7/13 + ---- +lib/sh/casemod.c + - include shmbchar.h for is_basic and supporting pieces + - sh_casemod: use _to_wupper and _to_wlower to convert wide character + case instead of TOUPPER and TOLOWER. Fixes bug reported by + Dennis Williamson , fix from + Andreas Schwab + - cval: short-circuit and return ascii value if is_basic tests true + - sh_casemod: short-circuit and use non-multibyte case modification + and toggling code if is_basic tests true + +lib/readline/signals.c + - _rl_{block,release}_sigint: remove the code that actually blocks and + releases the signals, since we defer signal handling until calls to + RL_CHECK_SIGNALS() + +lib/readline/{callback,readline,util}.c + - if HAVE_POSIX_SIGSETJMP is defined, use sigsetjmp/siglongjmp without + saving and restoring the signal mask instead of setjmp/longjmp + +lib/readline/rltty.c + - prepare_terminal_settings: don't mess with IXOFF setting if + USE_XON_XOFF defined + +doc/{bash.1,bashref.texi} + - add some text to the description of set -e clarifying its effect + on shell functions and shell function execution. Suggested by + Rainer Blome + +bashline.c + - edit_and_execute_command: increment current_command_line_count before + adding partial line to command history (for command-oriented-history + because of rl_newline at beginning of function), then reset it to 0 + before adding the dummy history entry to make sure the dummy entry + doesn't get added to previous incomplete command. Partial fix for + problem reported by Peng Yu + + 7/24 + ---- +configure.in + - interix: define RECYCLES_PIDS. Based on a report from Michael + Haubenwallner + + 7/26 + ---- +jobs.c + - make_child: call bgp_delete on the newly-created pid unconditionally. + Some systems reuse pids before cycling through an entire set of + CHILD_MAX/_SC_CHILD_MAX unique pids. This is no longer dependent + on RECYCLES_PIDS. Based on a report from Michael Haubenwallner + + +support/shobj-conf + - Mac OS X: drop MACOSX_DEPLOYMENT_TARGET=10.3 from the LDFLAGS. We + can finally kill Panther + + 7/28 + ---- +subst.c + - command_substitute: make sure last_made_pid gets reset if make_child + fails + +execute_cmd.c + - execute_command_internal: case cm_simple: decide whether or not to + wait_for a child if already_making_children is non-zero, indicates + that there is an unwaited-for child. More of fix for bug report + from Michael Haubenwallner + +jobs.c + - make_child: call delete_old_job (new_pid) unconditionally, don't + bother to check whether or not pid wrap occurred. Rest of fix for + bug report from Michael Haubenwallner + + + 7/29 + ---- +shell.c + - subshell_exit: new function, exits the shell (via call to sh_exit()) + after calling any defined exit trap + +externs.h + - subshell_exit: new extern declaration + +execute_cmd.c + - execute_command_internal: make sure to call subshell_exit for + {} group commands executed asynchronously (&). Part of fix for + EXIT trap bug reported by Maarten Billemont + +sig.c + - reset_terminating_signals: make sure to set termsigs_initialized back + to 0, so a subsequent call to initialize_terminating_signals works + right. Rest of fix for bug reported by Maarten Billemont + + +{execute_cmd,general,jobs,mailcheck,mksyntax,test}.c +builtins/{cd,fc,pushd,ulimit}.def +lib/malloc/getpagesize.h +lib/sh/{clktck,fpurge,inet_aton,mailstat,oslib,pathcanon,pathphys,spell,strerror}.c + - make inclusion of dependent on HAVE_SYS_PARAM_H + consistently + + 8/6 + --- +lib/readline/histexpand.c + - history_expand_internal: now takes an additional argument saying + whether the history expansion occurs within a quoted string, set to + the open quote character + - history_expand_internal: use new argument instead of checking prev + char and initializing quoted_search_delimiter, pass qc directly to + get_history_event, where it allows a matching quote to terminate a + string defining an event + - history_expand: change single-quote handling code so that if + history_quotes_inhibit_expansion is 0, single quotes are treated + like double quotes + - history_expand: change call to history_expand_internal to pass new + argument of `"' if double-quoted string, `'' if single-quoted string; + this lets history_expand decide what is a quoted string and what + is not + + 8/7 + --- +configure.in + - AC_CANONICAL_BUILD: invoke for later use + +lib/readline/macro.c + - _rl_prev_macro_key: new function, inverse of _rl_next_macro_key: + backs up the index into the current macro by 1 + +lib/readline/rlprivate.h + - _rl_prev_macro_key: extern declaration + + +lib/readline/readline.c + - _rl_dispatch_subseq, _rl_subseq_result: don't call _rl_unget_char + if we're currently reading from a macro; call _rl_prev_macro_key + instead. Fixes bug reported by Clark Wang + + 8/13 + ---- +builtins/evalstring.c + - evalstring(): new function, wrapper around parse_and_execute. + make sure we handle cases where parse_and_execute can call `return' + and short-circuit without cleaning up properly. We call + parse_and_execute_cleanup() then jump to the previous-saved return + location + +builtins/common.h + - extern declaration for evalstring() + +builtins/eval.def + - eval_builtin: make sure we handle `eval " ... return"' in contexts + where `return' is valid by calling evalstring(). Fixes bug with + `eval return' in sourced files reported by Clark Wang + + +trap.c + - run_pending_traps: call evalstring instead of parse_and_execute. + XXX - still needs to handle saving and restoring token state in the + presence of `return'; could use unwind_protects for that + +builtins/mapfile.def + - run_callback: call evalstring instead of parse_and_execute + + 8/15 + ---- +bashline.c + - bash_filename_stat_hook: make sure we don't free local_dirname + before using it to canonicalize any expanded filename. Make sure + it always points to *dirname and only free it if we're replacing + it. + +lib/readline/complete.c + - append_to_match: make sure we call rl_filename_stat_hook with + newly-allocated memory to avoid problems with freeing it twice + + 8/17 + ---- +variables.c,config-top.h + - if ARRAY_EXPORT is defined to 1 when variables.c is compiled, the + code that allows indexed arrays to be exported is enabled and + included + + 8/19 + ---- +shell.c + - call start_debugger from main() only if dollar_vars[1] != 0 (close + enough to a non-interactive shell, since we can be interactive with + -i while running a shell script). Fixes oddity reported by + Techlive Zheng + + 8/20 + ---- +arrayfunc.c + - quote_array_assignment_chars: don't bother quoting if the word has + not been marked as an assignment (W_ASSIGNMENT) + - quote_array_assignment_chars: turn on W_NOGLOB in the word flags + so assignment statements don't undergo globbing. Partial fix for + problems reported by Dan Douglas + + 8/21 + ---- +command.h + - W_NOBRACE: new word flag that means to inhibit brace expansion + +subst.c + - brace_expand_word_list: suppress brace expansion for words with + W_NOBRACE flag + + 8/22 + ---- +builtins/read.def + - read_builtin: don't call dequote_string on what we've read, even if + we saw an escape character, unless (input_string && *input_string). + We may have escaped an IFS whitespace character. Fixes seg fault + reported by + +execute_cmd.c + - execute_command_internal: set the_printed_command_except trap when + about to execute a ( ... ) user subshell. For now, set it only if + ERR is trapped; can relax that later. Fixes bug reported by + Mike Frysinger + + 8/23 + ---- +jobs.c + - remove references to first_pid and pid_wrap, since we're not using + them for anything anymore + + 8/24 + ---- +subst.c + - changes for W_NOBRACE everywhere appropriate: so it can be displayed + for debugging, and passed out of expand_word_internal + +doc/{bash.1,bashref.texi} + - small changes to make it clearer that the = and == operators are + equivalent, and will cause pattern matching when used with [[. + From a question from Michal Soltys + +doc/bashref.texi + - some small formatting changes from Karl Berry + + 8/27 + ---- +lib/readline/doc/{history,rlman,rluserman}.texi + - some small formatting changes from Karl Berry + +arrayfunc.c + - assign_array_element_internal, assign_compound_array_list, + unbind_array_element, array_value_internal: changes to make + assignment statements to negative indices (a[-1]=2) and unsetting + array elements using negative indices (unset 'a[-1]') work. + From suggestions by Dennis Williamson + and Chris F. A. Johnson + +subst.c + - array_length_reference: changes to make length references to array + elements using negative indices (${#a[-1]}) work + + 8/28 + ---- +doc/{bash.1,bashref.texi} + - document new treatment of negative indices to indexed arrays when + assigning, referencing, calculating length, and unsetting + + 8/29 + ---- +shell.c + - show_shell_usage: add -l to list of shell invocation options (short + for --login). From Red Hat bug 852469 + +configure.ac + - renamed from configure.in, as latest autoconf versions want. Patches + Stefano Lattarini + +MANIFEST,Makefile.in,doc/bashref.texi,support/mkconffiles + - configure.in -> configure.ac + + 9/1 + --- + +parse.y + - read_token_word: allow words like {array[ind]} to be valid redirection + words for constructs like {x} + +lib/readline/display.c + - update_line: if the first difference between the old and new lines + is completely before any invisible characters in the prompt, we + should not adjust _rl_last_c_pos, since it's before any invisible + characters. Fixed in two places + - prompt_modechar: return a character indicating the editing mode: + emacs (@), vi command (:), or vi insert (+) + - _rl_reset_prompt: new function, just calls rl_expand_prompt. Will be + inlined, placeholder for more changes + - expand_prompt: if show-mode-in-prompt is enabled, add a character to + the front of the prompt indicating the editing mode, adjusting the + various variables as appropriate to keep track of the number of + visible characters and number of screen positions + +lib/readline/bind.c + - show-mode-in-prompt: new bindable boolean variable, shadowed by + _rl_show_mode_in_prompt variable + - hack_special_boolean_var: call _rl_reset_prompt when toggling or + setting show-mode-in-prompt + +lib/readline/readline.c + - readline_internal_setup: make sure the correct vi mode keymap is set + before expanding the prompt string for the first time + +lib/readline/misc.c + - rl_emacs_editing_mode: make sure to call _rl_reset_prompt if we're + showing the editing mode in the prompt + +lib/readline/rlprivate.h + - _rl_reset_prompt, _rl_show_mode_in_prompt: extern declarations + +lib/readline/vi_mode.c + - rl_vi_insertion_mode: call _rl_reset_prompt + - rl_vi_movement_mode: call _rl_reset_prompt. Finishes changes for + showing mode in prompt string, originally requested by Miroslav + Koskar and most recently by Jordan Michael + Ziegler + +doc/bash.1,lib/readline/doc/{readline.3,rluser.texi} + - document new show-mode-in-prompt variable, off by default + + 9/3 + --- + +jobs.c + - set_childmax: new function, external mechanism for other parts of + the shell to set js.c_childmax, the number of saved exited child + statuses to remember +jobs.h + - set_childmax: extern declaration + +variables.c + - CHILD_MAX: new special variable, with sv_childmax function to + run when it changes. Setting CHILD_MAX to a value greater than + zero but less than some maximum (currently 8192) sets the number of + exited child statuses to remember. set_childmax (jobs.c) ensures + that the number does not drop below the posix-mandated minimum + (CHILD_MAX) + +doc/{bash.1,bashref.texi} + - CHILD_MAX: document new meaning and action when variable is set + + 9/5 + --- +redir.c + - redir_varassign: call stupidly_hack_special_variables after + assigning fd number to specified variable, so we can use constructs + like {BASH_XTRACEFD}>foo. Suggested by Pierre Gaston + + + 9/8 + --- +expr.c + - readtok: invalidate previous contents of `curlval' before freeing + and reallocating tokstr (which, chances are, will get the same + pointer as before and render curlval inconsistent). Fixes other + bug reported by Dan Douglas + + 9/9 + --- +lib/readline/complete.c + - rl_username_completion_function: protect call to setpwent() with + #ifdef (HAVE_GETPWENT)/#endif. Fixes bug reported by + Gerd Hofmann + +lib/readline/display.c + - rl_message: second and subsequent calls to rl_message can result in + local_prompt being overwritten with new values (e.g., from the + successive calls displaying the incremental search string). Need + to free before overwriting if it's not the same as the value saved + in saved_local_prompt. Fixes memory leak reported by + Wouter Vermaelen + +lib/readline/{terminal.c,rlprivate.h} + - move CUSTOM_REDISPLAY_FUNC and CUSTOM_INPUT_FUNC defines from + terminal.c to rlprivate.h so other files can use them + +expr.c + - expr_streval: if noeval is non-zero, just return 0 right away, + short-circuiting evaluation completely. readtok will leave curtok + set correctly without re-entering the evaluator at all. Rest of + fix for bug reported by Dan Douglas + + 9/11 + ---- + +parse.y + - parse_comsub: make sure the `reserved word ok in this context' flag + is preserved after we read `do' followed by whitespace. Fixes bug + reported by Benoit Vaugon + + 9/13 + ---- +configure.ac,config.h.in + - enable-direxpand-default: new configure option, turns the `direxpand' + shell option on by default + +bashline.c + - dircomplete_expand, dircomplete_expand_relpath: initialize to 1 if + DIRCOMPLETE_EXPAND_DEFAULT is defined and non-zero + +doc/bashref.texi + - enable-direxpand-default: document new configure option + + 9/14 + ---- +shell.c + - --protected: make option valid only when wordexp is compiled into + the shell. Fix from Roman Rakus + +configure.ac + - HP NonStop (*-nsk*): compile --without-bash-malloc. Change from + Joachim Schmitz + + 9/16 + ---- +subst.c,execute_cmd.c,lib/glob/sm_loop.c,lib/sh/shquote.c + - minor code cleanups from Joachim Schmitz + +lib/readline/colors.h + - workaround for HP NonStop compiler issue with from + Joachim Schmitz + + 9/17 + ---- +builtins/printf.def + - printf_builtin: handle localtime returning NULL, as can happen when + encountering overflow. Bug report and initial fix from + Eduardo A. Bustamante López + +doc/{bash.1,bashref.texi} + - emphasize that brace expansion using character ranges ({a..c}) acts + as if the C locale were in use. Prompted by message from + Marcel Giannelia + + 9/20 + ---- +lib/sh/wcsnwidth.c + - wcsnwidth: new function, variant of wcwidth, returns the number of + wide characters from a string that will be displayed to not exceed + a specified max column position + + 9/21 + ---- +builtins/help.def + - show_builtin_command_help: break code that displays the short-doc + for each builtin in two columns into a new function: dispcolumn + - wdispcolumn: multibyte-char version of dispcolumn; uses wide + chars and printf "%ls" format. Fixes problem reported by + Nguyá»n Thái Ngá»c Duy + + 9/22 + ---- +execute_cmd.c + - execute_disk_command: before running the command-not-found hook, + call kill_current_pipeline() to make sure we don't add processes + to an existing pipeline or wait for processes erroneously + + 9/23 + ---- +lib/readline/input.c + - rl_input_available_hook: new hook function, called from + _rl_input_available (or _rl_input_queued) to return whether or not + input is available wherever the input source is + +lib/readline/doc/rltech.texi + - rl_input_available_hook: document + + 9/27 + ---- +lib/glob/sm_loop.c: + - GMATCH: after one or more `*', an instance of ?(x) can match zero or + 1 times (unlike ?, which has to match one character). The old code + failed if it didn't match at least once. Fixes `a*?(x)' bug. + - GMATCH: if we hit the end of the search string, but not the end of + the pattern, and the rest of the pattern is something that can + match the NUL at the end of the search string, we should successfully + match. Fixes `a*!(x)' bug reported by + + 10/2 + ---- +command.h + - add c_lock member to coproc structure for future use to tell who is + manipulating it + +execute_cmd.c + - execute_coproc: block SIGCHLD while parent is forking coproc + process and adding pid to sh_coproc struct to avoid race condition + where child is reaped before the pid is assigned and the coproc is + never marked as having died. Fixes race condition identified by + Davide Baldini + - add assignments to c_lock member of struct coproc in various + functions that manipulate it; was used to identify race condition + - coproc_pidchk: don't call coproc_dispose to avoid using malloc and + other functions in a signal handler context + - coproc_dispose: call BLOCK_SIGNAL/UNBLOCK_SIGNAL for SIGCHLD while + manipulating the sh_coproc struct + + 10/6 + ---- +lib/readline/complete.c + - rl_display_match_list: if printing completions horizontally, don't + bother with spacing calculations if limit == 1, which means we are + printing one completion per line no matter what. Fixes bug + reported by David Kaasen + + 10/7 + ---- +builtins/declare.def + - declare_internal: add error checking for nameref attribute and + variable assignments: self-references, attempts to make an array + variable a nameref + +subst.c + - parameter_brace_expand: handle parameter_brace_expand_word returning + &expand_param_fatal or &expand_param_error and return the appropriate + error value + - parameter_brace_expand_word: if a nameref variable's value is not a + valid identifier, return an error + - param_expand: if a nameref variable's value is not a valid identifier, + return an error + +test.c + - unary_operator: add new -R variable, returns true if variable is set + and has the nameref attribute. From ksh93 + +builtins/test.def + - add -R to description of conditional commands for help test + +doc/{bash.1,bashref.texi} + - document new -R unary conditional operator + + 10/13 + ----- +trap.c + - check_signals_and_traps: new function, convenience function for the + rest of the shell to check for pending terminating and interrupt + signals, and to check for and process any pending traps + - any_signals_trapped: new function, returns non-zero if any signals + are trapped and -1 if not + +trap.h + - extern declaration for check_signals_and_traps + +bashline.c + - bashline_reset: make sure we reset the event hook + - bash_event_hook: call check_signals_and_traps instead of just + checking for terminating signals so we can run pending traps and + react to interrupts, and reset the event hook when we're done + + + 10/14 + ----- +trap.c + - trap_handler: if executing in a readline signal handler context, + call bashline_set_event_hook to install bash_event_hook to process + the signal (if bash cares about it) + +sig.c + - sigint_sighandler: call bashline_set_event_hook to set the event + hook if we're executing in a readline signal handler context + +lib/readline/input.c + - rl_getc: call RL_CHECK_SIGNALS if read returns -1/EINTR and the caught + signal is SIGINT or SIGQUIT rather than waiting until the next time + around the loop + - rl_getc: call rl_event_hook after calling RL_CHECK_SIGNALS to allow + an application signal handler to set the event hook in its own + signal handler (e.g., like bash trap_handler or sigint_sighandler) + + +parse.y + - yy_readline_get: don't set interrupt_immediately before we call + readline(). Inspired by report from lanshun zhou + + +input.c + - getc_with_restart: add call to run_pending_traps after call to + CHECK_TERMSIG + +lib/sh/zread.c + - zread: call check_signals_and_traps if read() returns -1/EINTR + instead of just ignoring the EINTR and deferring handling any + signal that generated it + +builtins/mapfile.def + - mapfile: don't set interrupt_immediately before calling zgetline() + (which uses zread internally) + +builtins/read.def + - read_builtin: don't set interrupt_immediately before calling zread + (moved code around so that it was only being set right around calls + to zread to avoid signal handler conflicts). Inspired by report + from lanshun zhou + - edit_line: don't set interrupt_immediately around call to readline() + - include shmbutil.h + - read_builtin: don't call read_mbchar unless is_basic(c) returns + false for the character we just read + + 10/15 + ----- +sig.c + - throw_to_top_level: if interrupt_state is non-zero, make sure that + last_command_exit_value reflects 128+SIGINT if it's not already + greater than 128 + + 10/20 + ----- +builtins/wait.def + - WAIT_RETURN: set wait_signal_received back to 0 for the potential + next call to wait + +quit.h + - CHECK_WAIT_INTR: macro to check whether trap_handler handled a + signal and set wait_signal_received; longjmp to wait_intr_buf in + that case + +jobs.c + - wait_for, waitchld: call CHECK_WAIT_INTR at the same places we call + CHECK_TERMSIG to check for terminating signals + - wait_sigint_handler: don't longjmp out of the wait builtin unless + interrupt_immediately is set; otherwise just SIGRETURN from the + handler + - wait_sigint_handler: if interrupt_immediately not set, but we are + executing in the wait builtin and SIGINT is not trapped, treat it + as a `normally received' SIGINT: restore the signal handler and + send SIGINT to ourselves + - waitchld: when in posix mode and running SIGCHLD traps, don't longjmp + to wait_intr_buf (and let wait be interrupted) if we're running from + a signal handler. Wait for CHECK_WAIT_INTR to do the longjmp. + run_pending_traps will run the SIGCHLD trap later + +nojobs.c + - reap_zombie_children, wait_for_single_pid, wait_for: call + CHECK_WAIT_INTR where we call CHECK_TERMSIG + - wait_sigint_handler: don't longjmp out of the wait builtin unless + interrupt_immediately is set; otherwise just SIGRETURN from the + handler + +trap.c + - trap_handler: make sure wait_signal_received is set if the wait + builtin is executing, and only longjmp if interrupt_immediately is + set. This whole set of fixes was prompted by report from + lanshun zhou + + 10/24 + ----- +lib/glob/glob.c + - glob_filename: only check directory_name for globbing chars if + it's of non-zero length + +lib/sh/strchrnul.c + - new simpler implementation + +subst.c + - command_substitute: call set_shellopts after turning off errexit + in subshells so it's reflected in $SHELLOPTS + + 11/7 + ---- +builtins/evalstring.c + - parse_and_execute: treat ERREXIT case like reader_loop does: set + variable_context to 0 before longjmping back to top_level. Don't + run the unwind-protect context to avoid side effects from popping + function contexts. Part of fix for problem reported by Nikolai + Kondrashov + +execute_cmd.c + - execute_simple_command: call unlink_fifo_list only if this is the + last element of a pipeline (or not in a pipeline), rather than for + every child. Fixes difference in behavior between /dev/fd and + FIFOs reported by Zev Weiss + - execute_null_command: do the same thing in the parent branch after + make_child + + 11/14 + ----- +subst.c + - parameter_brace_expand: a variable is null if it's special ($@, $*), + the expansion occurs within double quotes, and the expansion turns + into a quoted null. Fixes debian bug 692447 reported by + Matrosov Dmitriy + +jobs.c + - run_sigchld_trap: make sure `running_trap' sentinel is set + appropriately + - waitchld: only run the sigchld trap if we're not in a signal + handler, not running a trap, and executing the wait builtin. + Otherwise, queue for later handling. We still run one instance + of the trap handler per exited child. Bulk of fix for bug + reported by Elliott Forney + +trap.c + - queue_sigchld_trap: set catch_flag so run_pending_traps notices, + and set trapped_signal_received for completeness. Rest of fix + for bug reported by Elliott Forney + +lib/malloc/malloc.c + - block_signals: renamed to _malloc_block_signals, made public + - unblock_signals: renamed to _malloc_unblock_signals, made public + +lib/malloc/imalloc.h + - extern declarations for _malloc_{un,}block_signals + +lib/malloc/table.c + - mregister_alloc, mregister_free: block signals around table + manipulation + + 11/15 + ----- +trap.c + - run_pending_traps: set SIG_INPROGRESS flag around calls to + run_sigchld_handler so other parts of the shell know that the + SIGCHLD trap handler is executing + - run_pending_traps: if we get a situation where we are looking at + running a SIGCHLD trap but the trap string is IMPOSSIBLE_TRAP_HANDLER + and the SIG_INPROGRESS flag is set, just skip it. This is possible + if run_pending_traps is called from a SIGCHLD trap handler run by + run_sigchld_trap + +doc/bash.1,lib/readline/doc/{rluser.texi,readline.3} + - corrected description of the effect of `set history-size 0'. Report + from Vesa-Matti J Kari + +include/stdc.h + - CPP_STRING: new define, replaces __STRING + +lib/malloc/{malloc.c,imalloc.h} + - replace __STRING with CPP_STRING + + 11/16 + ----- +lib/readline/bind.c + - sv_histsize: if argument evaluates to a value < 0, unstifle the + history + + 11/22 + ----- +redir.c + - do_redirection_internal: if we have REDIR_VARASSIGN set in the + redirection flags and we set up `redirector' using fcntl or dup2, + don't add a redirect to make sure it stays open. Let the + script programmer manage the file handle. Fixes bug reported by + Sam Liddicott + + 11/24 + ----- +jobs.c + - wait_for_any_job: new function, waits for an unspecified background + job to exit and returns its exit status. Returns -1 on no background + jobs or no children or other errors. Calls wait_for with new + sentinel value ANY_PID + - wait_for: changes to handle argument of ANY_PID: don't look up or + try to modify the child struct, only go through the wait loop once. + Return -1 if waitpid returns no children + +jobs.h + - ANY_PID: new define + +builtins/wait.def + - new option: -n. Means to wait for the next job and return its exit + status. Returns 127 if there are no background jobs (or no + children). Feature most recently requested by Elliott Forney + + +doc/{bash.1,bashref.texi} + - document new `wait -n' option + +execute_cmd.c + - execute_command_internal: save make_command_string () result in a + temp variable before calling savestring() on it; avoids evaluating + make_command_string() result twice. Fix from John E. Malmberg + + + 11/28 + ----- + +builtins/declare.def + - declare_internal: if an array variable is declared using `declare -a' + or `declare -A', but not assigned a value, set the `invisible' + attribute so the variable does not show up as set. Fix for bug + about variable initialization reported by Tim Friske + +builtins/{mapfile,read}.def + - after calling find_or_make_array_variable, make sure the invisible + flag is turned off, in case the variable was declared previously + using `declare -a' or `declare -A'. Side effect of above change to + declare_internal + +subst.c + - shell_expand_word_list: handle the W_ASSNGLOBAL flag and put -g into + the list of options passed to make_internal_declare as appropriate. + Fix for bug reported by Tim Friske + + 11/30 + ----- +test.c + - unary_op: make sure -v and -n check that the variable is not marked + as invisible before calling var_isset. Fix for bug reported by Tim + Friske + + 12/2 + ---- +subst.c + - process_substitute: turn off the `expanding_redir' flag, which + controls whether or not variables.c:find_variable_internal uses the + temporary environment to find variables. We want to use the + temp environment, since we don't have to worry about order of + evaluation in a subshell. Fixes bug reported by Andrey Borzenkov + + + 12/4 + ---- +lib/glob/glob.c + - glob_filename: changes to avoid null filenames and multiple entries + returned for patterns like **/** (globstar enabled). Fixes bug + reported by Ulf Magnusson + + 12/10 + ----- +lib/glob/glob.c + - glob_filename: finish up a series of changes to make globstar-style + globbing more efficient, avoid more duplicate filenames, and be more + compatible with other shells that implement it + o collapse a sequence of **/**/** to one ** + o note when the directory name is all ** or ends in ** so we + can treat it specially when the filename is ** + All inspired by report from Andrey Borzenkov + +lib/sh/zread.c + - zreadn: new function, like zread, but takes an additional argument + saying how many bytes to read into the local buffer. Can be used to + implement `read -N' without so many one-byte calls to zreadc. Code + from Mike Frysinger + + 12/12 + ----- +lib/glob/sm_loop.c + - PATSCAN (glob_patscan): if passed string already points to end of + pattern, return NULL immediately. Fixes problem with + extglob_skipname reported by Raphaël Droz + + 12/13 + ----- +execute_cmd.c + - execute_coproc: handle the command's exit status being inverted + (an oversight). Fixes bug reported by DJ Mills + and Andreas Schwab + + 12/14 + ----- +lib/readline/readline.c + - bind_arrow_keys_internal: add MINGW key bindings for Home, End, + Delete, and Insert keys. Fix from Pierre Muller + + +builtins/printf.def + - printf_builtin: '%()T' conversion: if there is no argument supplied, + behave as if -1 had been supplied (current time). ksh93-like feature + suggested by Clark Wang + +doc/{bash.1,bashref.texi} + - document new printf %()T default argument behavior + + 12/15 + ----- +lib/readline/display.c + - displaying_prompt_first_line: new variable, indicates whether or + not the first line of output is displaying the prompt. Always true + in normal mode, sometimes false in horizontal scrolling mode + - rl_redisplay: set displaying_prompt_first_line to true unless we + are in horizontal mode; set to false in horizontal mode if the left + margin of the displayed line is greater than the end of the prompt + string + - rl_redisplay: when in horizontal scroll mode, don't adjust + _rl_last_c_pos by the wrap offset unless the line is displaying + a prompt containing invisible chars + - update line: don't adjust _rl_last_c_pos by the wrap offset unless + the line is displaying a prompt containing invisible chars + - update_line: if shrinking the line by reducing the number of + displayed characters, but we have already moved the cursor to the + beginning of the line where the first difference starts, don't + try to delete characters + +builtins/read.def + - unbuffered_read: set to 2 if invoked as `read -N' + - if unbuffered_read is set to 2, compute the number of chars we + need to read and read that many with zreadn. Posix mode still + uses zreadintr. Code from Mike Frysinger + +doc/{bash.1,bashref.texi} + - read: make it clear that if read times out, it saves any input + read to that point into the variable arguments. Report from + Fiedler Roman + +subst.c + - command_substitute: change direct assignment of exit_immediately_on_error + to use change_flag ('e', FLAG_OFF) instead + +flags.c + - use errexit_flag as the variable modified by changes to the -e + option, reflect those changes to exit_immediately_on_error + +execute_cmd.c + - execute_builtin: new global variable, builtin_ignoring_errexit, set + to 0 by default and set to 1 if eval/source/command executing in a + context where -e should be ignored + - execute_builtin: set exit_immediately_on_error to errextit_flag + after executing eval/source/command in a context where -e should + be ignored + +flags.c + - if builtin_ignoring_errexit is set, changes to errexit_flag are + not reflected in the setting of exit_immediately_on_error. Fixes + bug reported by Robert Schiele + + 12/23 + ----- +include/posixjmp.h + - setjmp_nosigs: new define, call setjmp in such a way that it will + not manipulate the signal mask + +{expr,test,trap}.c + - setjmp_nosigs: call instead of setjmp; don't need to manipulate + signal mask + +builtins/read.def + - read_builtin: setjmp_nosigs: call instead of setjmp; don't need + to manipulate signal mask + +builtins/evalstring.c: + - parse_and_execute: setjmp_nosigs: call instead of setjmp; don't need + to manipulate signal mask + - parse_string: setjmp_nosigs: call instead of setjmp; don't need + to manipulate signal mask + - parse_and_execute: save and restore the signal mask if we get a + longjmp that doesn't cause us to return or exit (case DISCARD) + + 12/24 + ----- +general.c + - bash_tilde_expand: only set interrupt_immediately if there are no + signals trapped; we want to jump to top level if interrupted but + not run any trap commands + + 12/25 + ----- +jobs.c + - run_sigchld_trap: no longer set interrupt_immediately before calling + parse_and_execute, even if this is no longer run in a signal handler + context + +input.c + - getc_with_restart: add call to QUIT instead of CHECK_TERMSIG + +parse.y + - yy_stream_get: now that getc_with_restart calls QUIT, don't need to + set interrupt_immediately (already had call to run_pending_traps) + +execute_cmd.c + - execute_subshell_builtin_or_function,execute_function,execute_in_subshell: + setjmp_nosigs: call instead of setjmp when saving return_catch; don't + need to manipulate signal mask + - execute_subshell_builtin_or_function,execute_in_subshell: + setjmp_nosigs: call instead of setjmp where appropriate when saving + top_level; don't need to manipulate signal mask if we're going to + exit right away + +subst.c + - command_substitute: setjmp_nosigs: call instead of setjmp when saving + return_catch; don't need to manipulate signal mask + - command_substitute: setjmp_nosigs: call instead of setjmp where + appropriate when saving top_level; don't need to manipulate signal + mask if we're going to exit right away + +trap.c + - run_exit_trap: setjmp_nosigs: call instead of setjmp when saving + return_catch; don't need to manipulate signal mask + - run_exit_trap: setjmp_nosigs: call instead of setjmp where + appropriate when saving top_level; don't need to manipulate signal + mask if we're going to exit right away + - _run_trap_internal: setjmp_nosigs: call instead of setjmp when saving + return_catch; don't need to manipulate signal mask + +builtins/evalfile.c + - _evalfile: setjmp_nosigs: call instead of setjmp when saving + return_catch; don't need to manipulate signal mask + +builtins/evalstring.c + - evalstring: setjmp_nosigs: call instead of setjmp when saving + return_catch; don't need to manipulate signal mask + +shell.c + - main: setjmp_nosigs: call instead of setjmp where appropriate when + saving top_level; don't need to manipulate signal mask if we're + going to exit right away + - run_one_command: setjmp_nosigs: call instead of setjmp where + appropriate when saving top_level; don't need to manipulate signal + mask if we're going to exit right away + - run_wordexp: setjmp_nosigs: call instead of setjmp where + appropriate when saving top_level; don't need to manipulate signal + mask if we're going to exit right away + +eval.c + - reader_loop: save and restore the signal mask if we get a longjmp + that doesn't cause us to return or exit (case DISCARD) + + 12/26 + ----- +parse.y + - shell_input_line_{index,size,len}: now of type size_t; in some cases + the unsigned property makes a difference + - STRING_SAVER: saved_line_{size,index} now of type size_t + - shell_getc: don't allow shell_input_line to grow larger than SIZE_MAX; + lines longer than that are truncated until read sees a newline; + addresses theoretical buffer overflow described by Paul Eggert + + - set_line_mbstate: size_t changes like shell_getc + - shell_getc: if shell_input_line is larger than 32K, free it and + start over to avoid large memory allocations sticking around + +variables.c + - bind_global_variable: new function, binds value to a variable in + the global shell_variables table + +variables.h + - bind_global_variable: new extern declaration + +builtins/declare.def + - declare_internal: if -g given with name=value, but variable is not + found in the global variable table, make sure to call + bind_global_variable so the variable is created and modified at + global scope. Fixes a bug where declare -g x=y could modify `x' + at a previous function scope + +command.h + - W_ASSIGNARRAY: new word flag, compound indexed array assignment + +subst.h + - ASS_MKGLOBAL: new assignment flag, forcing global assignment even in + a function context, used by declare -g + +execute_cmd.c + - fix_assignment_words: set W_ASSIGNARRAY flag if -a option given to + declaration builtin + +subst.c + - do_assignment_internal: explicitly handle case where we are + executing in a function and we want to create a global array or + assoc variable + - shell_expand_word_list: call make_internal_declare if -a option + given to declaration builtin (W_ASSIGNARRAY); handle -g option with + it (W_ASSNGLOBAL). Fixes inconsistency noticed by Vicente Couce + Diaz , where declare -ag foo=(bar) could modify + array variable foo at previous function scope, not global scope + + 12/27 + ----- +bashline.c + - Minix needs the third argument to tputs to be a void funtion taking + an int argument, not an int-returning function. Fix from + John E. Malmberg as part of VMS bash port + + 12/29 + ----- +configure.ac,version.c,patchlevel.h + - bash-4.3-devel: new version, new shell compatibility level (43) + +subst.c + - parameter_brace_patsub: put the bash-4.2 code back in from the + change of 3/3 that runs the replacement string through quote + removal, make it dependent on shell_compatibility_level <= 42 + +builtins/shopt.def + - compat42: new shopt option + - set_compatibility_level: change logic to set and unset various + compat variables and shell_compatibility_level + +COMPAT + - new documentation for bash-4.3 compatibility changes + +doc/{bash.1,bashref.texi} + - compat42: document new shopt option + +builtins/shopt.def + - set_compatibility_opts: new function, sets the various shopt + compat variables based on the value of shell_compatibility_level + +builtins/common.h + - set_compatibility_opts: new extern declaration + +variables.c + - BASH_COMPAT: new special variable; sets the shell compatibility + level. Accepts values in decimal (4.2) or integer (42) form; + Unsetting variable, setting it to empty string, or setting it to + out-of-range value sets the shell's compatibility level to the + default for the current version. Valid values are 3.1/31 through + the current version + - sv_shcompat: new function implementing logic for BASH_COMPAT + +variables.h + - sv_shcompat: new extern declaration + +doc/{bash.1,bashref.texi} + - BASH_COMPAT: description of new variable + +lib/readline/complete.c + - _rl_colored_stats: default back to 0 for 4.3 release branch + + 1/5/2013 + -------- +quit.h + - remove spurious call to itrace in CHECK_WAIT_INTR + +bashline.c + - bash_event_hook: if we're going to jump to top_level, make sure we + clean up after readline() by calling rl_cleanup_after_signal(). + Fixes bug reported against devel branch by Raphaël Droz + + - bash_event_hook: reset the event hook before checking for signals + or traps in case we longjmp + +doc/{bash.1,bashref.texi} + - small additions to the set -e section to make it more clear that + contexts where -e is ignored extend to compound commands as well + as shell functions + +lib/readline/readline.h + - rl_signal_event_hook: new extern declaration + +lib/readline/input.c + - rl_signal_event_hook: new variable, hook function to call when a + function (currently just read(2)) is interrupted by a signal and + not restarted + - rl_getc: call rl_signal_event_hook instead of rl_event_hook + +lib/readline/doc/rltech.texi + - rl_signal_event_hook: document new function + +bashline.c + - changes to set rl_signal_event_hook instead of rl_event_hook + +lib/readline/readline.h + - change readline version numbers to 6.3 + + 1/6 + --- +doc/{bash.1,bashref.texi} + - a couple of changes to the descriptions of the ERR trap and its + effects based on a message from Rob Nagler + + 1/9 + --- +expr.c + - expassign: invalidate curlval before freeing and NULLing tokstr to + avoid aliasing issues. Fixes bug reported by Eduardo A. Bustamante + López and Dan Douglas + +braces.c + - array_concat: don't be so aggressive in trying to short-circuit. We + can only short-circuit if we have a single-element array where the + element is an empty string (array[0] == "" array[1] = 0x0). Existing + practice requires us to replicate arrays and prefix or append empty + strings. Fixes bug reported by Eduardo A. Bustamante López + + + 1/11 + ---- +execute_cmd.c + - execute_builtin: since mapfile uses evalstring() to run its callbacks + internally, just like eval, so it needs to handle the case where the + temp environment given to mapfile persists throughout the entire + set of callback commands. This might be a problem with trap also, but + trap isn't run in the same way. Fixes bug reported by Dan Douglas + + + 1/13 + ---- +redir.c + - redirection_error: before expanding the redirection word (if + expandable_redirection_filename returns true), disable command + substitution during expansion. Fixes bug reported by Dan Douglas + + +subst.c + - expand_word_internal: case '\\': if the next character is an IFS + character, and the expansion occurs within double quotes, and the + character is not one for which backslash retains its meaning, add + the (escaped) '\' and the (escaped) character. Fixes bug reported + by Dan Douglas + + 1/15 + ---- +builtins/cd.def + - cd_builtin: make sure call to internal_getopt handles -e option. + Fixes bug reported by + + 1/17 + ---- +subst.c + - expand_word_list_internal: make sure tempenv_assign_error is + initialized to 0 + +execute_cmd.c + - execute_simple_command: make sure tempenv_assign_error is reset to 0 + after it's tested to see if an error should force the shell to exit. + Fixes problem where a the failure of a tempenv assignment preceding + a non-special builtin `sticks' and causes the next special builtin + to exit the shell. From a discussion on bug-bash started by + douxin + + 1/20 + ---- +subst.c + - parameter_brace_expand_rhs: call stupidly_hack_special_variables + after assigning with ${param[:]=word} even if IFS is changing. + Suggested by Dan Douglas [TENTATIVE, needs work + on IFS side effects] + +command.h + - W_GLOBEXP (which was unused) is now W_SPLITSPACE (which isn't used + yet) + +{execute_cmd,subst,variables}.c + - removed all code that mentioned W_GLOBEXP + - removed mention of gnu_argv_flags and code that set it + + 1/22 + ---- +subst.c + - param_expand: set W_SPLITSPACE if we expand (unquoted) $* and + IFS is unset or null so we can be sure to split this on spaces + no matter what happens with IFS later + - expand_word_internal: note that param_expand returns W_SPLITSPACE + in the returned word flags and keep track of that state with + `split_on_spaces' + + 1/23 + ---- +subst.c + - expand_word_internal: if split_on_spaces is non-zero, make sure + we split `istring' on spaces and return the resultant word. The + previous expansions should have quoted spaces in the positional + parameters where necessary. Suggested by Dan Douglas + + +execute_cmd.c + - execute_command_internal: make sure any subshell forked to run a + group command or user subshell at the end of a pipeline runs any + EXIT trap it sets. Fixes debian bash bug 698411 + http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=698411 + +subst.c + - shell_expand_word_list: fix code that creates args for and calls + make_internal_declare to avoid calling it twice (missing `else' + in 12/26 change) + - do_assignment_internal: fix code from 12/26 change to fix problem + where an existing assoc variable could be converted to an array + without checking `mkassoc' + + 1/24 + ---- +builtins/evalfile.c + - _evalfile: add missing `close (fd)' calls before returning to + avoid fd leaks. Bug and fix from Roman Rakus + + 1/25 + ---- +builtins/read.def + - read_builtin: don't try to play tricks with the top of the unwind- + protect stack after read gets a SIGALRM; save input_string to new + memory, run the stack, then restore input_string and assign the + variables. Part of fix for bug reported by konsolebox + ; the rest of the fix is with the changes in + trap and signal handling and doing away with interrupt_immediately + + 1/26 + ---- +redir.c + - redirection_expand, write_here_string, write_here_document: before + calling any of the word expansion functions, after setting + expanding_redir to 1 (which bypasses the temp environment in the + variable lookup functions), call sv_ifs to reset the cached IFS- + related variables set by subst.c:setifs(). This ensures that + redirections will not get any IFS values that are set in the + temporary environment, as Posix specifies. Then, after the word + expansions, after resetting expanding_redir to 0, call sv_ifs + again to make sure the cached IFS values are set from any + assignments in the temporary environment. We force executing_builtin + to 1 to `fool' the variable lookup functions into using any temp + environment, then reset it to its old value after sv_ifs returns. + This is what allows read() to use the (cached) IFS variables set + in the temp environment. Fixes inconsistency reported by Dan Douglas + + + 1/29 + ---- +lib/readline/display.c + - update_line: fix off-by-one error when updating vis_lbreaks array + in a multibyte locale that occurs when moving multibyte chars from + one line down to another. Bug report and fix from Egmont + Koblinger + + 1/30 + ---- +configure.ac + - changed version to 4.3-alpha + +redir.c + - redir_open: handle open returning -1/EINTR, which seems to happen + a lot with FIFOs and SIGCHLD, and call QUIT to handle other + signals that can interrupt open(2). Bug report and initial fix + from Mike Frysinger + + 1/31 + ---- +subst.c + - parameter_brace_expand: make sure to propagate the PF_ASSIGNRHS flag + to parameter_brace_expand_word + - parameter_brace_expand_word: make sure that if the PF_ASSIGNRHS flag + is set and we are expanding ${a[@]} or ${a[*]} we set quoted to + include Q_DOUBLE_QUOTES before calling array_value_internal, mirroring + what we do for $@ and $*. Fixes inconsistency reported by Dan + Douglas + +configure.ac + - use AC_CHECK_TOOL instead of AC_CHECK_PROG to check for ar, since it + will find $host-prefixed versions of utilities. Report and fix from + Mike Frysinger + +builtins/setattr.def + - set_var_attribute: check whether bind_variable (called when the + variable whose attributes are being modified is found in the temp + environment) just modified a read-only global variable, and don't + bother marking the temporary variable for propagation if so. The + propagation is superfluous and will result in a strange error + message + + 2/2 + --- +variables.c + - initialize_shell_variables: don't try to import function definitions + with invalid names from the environment if already in posix mode, + but create them as (invisible) exported variables so they pass + through the environment. Print an error message so user knows + what's wrong. Fixes bug reported by Tomas Trnka + + 2/9 + --- + +builtins/read.def + - sigalrm_seen, alrmbuf: now global so the rest of the shell (trap.c) + can use them + - sigalrm: just sets flag, no longer longjmps to alrmbuf; problem was + longjmp without manipulating signal mask, leaving SIGALRM blocked + +quit.h + - move CHECK_ALRM macro here from builtins/read.def so trap.c: + check_signals() can call it + +trap.c + - check_signals: add call to CHECK_ALRM before QUIT + - check_signals_and_traps: call check_signals() instead of including + CHECK_ALRM and QUIT inline. Integrating check for read builtin's + SIGALRM (where zread call to check_signals_and_traps can see it) + fixes problem reported by Mike Frysinger + + 2/12 + ---- +lib/glob/xmbsrtowcs.c + - xdupmbstowcs2: fixed but where end of string was not handled + correctly, causing loop to go past end of string in a bunch of cases. + Fixes bug reported by "Dashing" + + + 2/13 + ---- +builtins/pushd.def + - popd_builtin: treat any argument that isn't -n or of the form + [-+][[:digit:]]* as an error. Fixes problem reported by Bruce + Korb + + 2/14 + ---- +configure.ac + - add check for sig_atomic_t; already a placeholder for it in + config.h.in + + 2/15 + ---- +subst.c + - do_compound_assignment: don't call assign_compound_array_list with + a NULL variable in case make_local_xxx_variable returns NULL + (it will if you try to shadow a readonly or noassign variable). + Fixes bug reported by Richard Tollerton + + 2/16 + ---- +variables.c + - make_local_variable: print error messager if an attempt is made to + create a local variable shadowing a `noassign' variable. Previously + we just silently refused to do it + +trap.[ch] + - get_original_signal: now global so rest of the shell can use it + +sig.c + - initialize_shell_signals: install a signal handler for SIGTERM + that does nothing except set a sigterm_received flag instead of + ignoring it with SIG_IGN, as long as SIGTERM is not ignored when + the shell is started. Use get_original_signal early to get the + original handler, since we will do that later anyway + - set_signal_handler: if installing sigterm_sighandler as the SIGTERM + handler, make sure to add SA_RESTART flag to make it as close to + SIG_IGN as possible + +sig.h + - sigterm_sighandler: new extern declaration + +quit.h + - RESET_SIGTERM: set sigterm_receved to 0 + - CHECK_SIGTERM: check sigterm_received; if it's non-zero, treat it + as a fatal signal and call termsig_handler to exit the shell + +jobs.c + - make_child: call RESET_SIGTERM just before fork() so we can detect + if the child process received a SIGTERM before it's able to change + the signal handler back to what it was when the shell started + (presumably SIG_DFL). Only has effect if the shell installed + sigterm_sighandler for SIGTERM, interactive shells that were not + started with SIG_IGN as the SIGTERM handler + - make_child: call RESET_SIGTERM in the parent after fork() so the + rest of the shell won't react to it + +execute_cmd.c + - execute_simple_command: call CHECK_SIGTERM after make_child in child + to catch SIGTERM received after fork() and before restoring old + signal handlers + - execute_disk_command: call CHECK_SIGTERM after make_child in child + process after restoring old signal handlers and again just before + calling shell_execve. Fixes race condition observed by + Padraig Brady when testing with his `timeout' + program + +lib/readline/display.c + - open_some_spaces: new function, subset of insert_some_chars that just + opens up a specified number of spaces to be overwritten + - insert_some_spaces: now just calls to open_some_spaces followed by + _rl_output_some_chars + - update_line: use col_temp instead of recalculating it using + _rl_col_width in the case where we use more columns with fewer bytes + - update_line: use open_some_spaces and then output the right number + of chars instead of trying to print new characters then overwrite + existing characters in two separate calls. This includes removing + some dodgy code and making things simpler. Fix from Egmont + Koblinger + - use new variable `bytes_to_insert' instead of overloading temp in + some code blocks (nls - nfd, bytes that comprise the characters + different in the new line from the old) + + 2/18 + ---- +redir.c + - do_redirection_internal: add undoable redirection for the implicit + close performed by the <&n- and >&n- redirections. Fixes bug + reported by Stephane Chazelas + + 2/19 + ---- +sig.c + - termsig_handler: an interactive shell killed by SIGHUP and keeping + command history will try to save the shell history before exiting. + This is an attempt to preserve the save-history-when-the-terminal- + window-is-closed behavior + + 2/21 + ---- +braces.c + - brace_expand: if a sequence expansion fails (e.g. because the + integers overflow), treat that expansion as a simple string, including + the braces, and try to process any remainder of the string. The + remainder may include brace expansions. Derived from SuSE bug + 804551 example (https://bugzilla.novell.com/show_bug.cgi?id=804551) + + 2/23 + ---- +{quit,sig}.h,sig.c + - sigterm_received declaration now in sig.h; type is sig_atomic_t + - sigwinch_received type now sig_atomic_t + - sig.h includes bashtypes.h and if SIG_DFL not defined + (same logic as trap.h) to pick up sig_atomic_t + +unwind_prot.c + - include sig.h before quit.h (reverse order) + + 2/27 + ---- +builtins/shopt.def + - reset_shopt_options: make sure check_window_size is reset to the + default from config.h, not unconditionally to 0 + +jobs.[ch] + - last_made_pid, last_asynchronous_pid: now volatile. Change from SuSE + +jobs.c + - wait_for: if we're using sigaction to install a handler for SIGCHLD, + make sure we specify SA_RESTART + +lib/{tilde,readline}/shell.c + - get_home_dir: instead of looking in the password file every time, + look once and cache the result + +sig.[ch] + - sigwinch_received, sigterm_received: now `volatile' qualified + +sig.c,quit.h + - interrupt_state,terminating_signal: now sig_atomic_t + + 3/1 + --- +MANIFEST,examples/* + - removed around 120 files without FSF copyrights; requested by + Karl Berry in early January + + 3/2 + --- +lib/malloc/malloc.c + - morecore: only check whether SIGCHLD is trapped if SIGCHLD is defined + +doc/bashref.texi + - Fixed most of the examples in the GNU Parallel section to use better + shell idioms following complaints on bug-bash; added a couple of + examples and smoothed out the text + +quit.h + - include "sig.h" for sig_atomic_t + +lib/readline/display.c + - update_line: when inserting one or more characters at the end of + the display line in a non-multibyte environment, just write from the + first difference to the end of the line and return. We don't have + to adjust _rl_last_c_pos. This is needed to adjust from the old + two-part copy to a single call to _rl_output_some_chars (change of + 2/16) + + 3/4 + --- +Makefile.in,doc/Makefile.in + - PACKAGE_TARNAME, docdir: new variables substituted by autoconf + - OTHER_DOCS,OTHER_INSTALLED_DOCS: new variables with auxiliary + documentation files to be installed into $(docdir) + - install: add new rule to install $(OTHER_DOCS) + - uninstall: add new rule to uninstall $(docdir)/$(OTHER_INSTALLED_DOCS) + +doc/bash.1 + - add URL to `POSIX' file in `SEE ALSO' section; put pointer to that + section in --posix and set -o posix descriptions + +examples/ + - removed around 110 examples at the request of the FSF due to copyright + issues + + 3/5 + --- +builtins/setattr.def + - readonly: modified help text slightly to make it clearer that + functions aren't changed or displayed unless the -f option is given. + Report from + + 3/9 + --- +include/typemax.h + - SIZE_MAX: define to 65535 (Posix minimum maximum) if not defined + +parse.y + - include "typemax.h" for possible SIZE_MAX definition, make sure we + include it after shell.h + +{braces,expr}.c + - include "typemax.h" for possible INTMAX_MIN and INTMAX_MAX definitions + + 3/10 + ---- +bashline.c + - bash_default_completion: make sure completion type of `!' (same as + TAB but with show-all-if-ambiguous set) and glob-word-completion + sets rl_filename_completion_desired to 0 so extra backslashes don't + get inserted by `quoting' the completion. We can't kill all the + matches because show-all-if-ambiguous needs them. Bug report from + Marcel (Felix) Giannelia + +[bash-4.3-alpha frozen] + + 3/14 + ---- +general.c + - trim_pathname: use memmove instead of memcpy since the source and + destination pathnames may overlap. Report and fix from Matthew + Riley + + 3/18 + ---- +configure.ac + - socklen_t is defined as `unsigned int' if configure can't find it + + 3/20 + ---- +lib/readline/complete.c + - S_ISVTX: since it's not defined on all platforms (Minix), make sure + its use is protected with #ifdef + + 3/21 + ---- +doc/{bash.1,bashref.texi} + - Added mention of ${!name[@]} and ${!name[*]} expansions to get all + indices of an array. Suggested by Jonathan Leffler + + + 3/24 + ---- +subst.h + - SD_IGNOREQUOTE: new define for skip_to_delim; if set, means that + single quotes (for now) will be treated as ordinary characters + +subst.c + - skip_to_delim: handle SD_IGNOREQUOTE. no callers use it for now + + 3/25 + ---- +support/config.{guess,sub} + - updated to versions from autoconf-2.69 + + 3/31 + ---- +lib/sh/shquote.c + - sh_single_quote: short-circuit quoting a single "'" instead of + creating a long string with empty single-quoted strings + +parser.h + - DOLBRACE_QUOTE2: new define, like DOLBRACE_QUOTE, but need to single- + quote results of $'...' expansion because quote removal will be + done later. Right now this is only done for ${word/pat/rep} + +parse.y + - parse_matched_pair: set state to DOLBRACE_QUOTE2 for pattern + substitution word expansion so we don't treat single quote specially + in the pattern or replacement string + - parse_matched_pair: if we're parsing a dollar-brace word expansion + (${...}) and we're not treating single quote specially within + double quotes, single-quote the translation of $'...' ansi-c + escaped strings. Original report and fix from Eduardo A. + Bustamante López + +subst.c + - extract_dollar_brace_string: ${word/pat/rep} scanning now sets the + DOLBRACE_QUOTE2 flag instead of DOLBRACE_QUOTE so we don't treat + single quotes specially within a double-quoted string + +execute_cmd.c + - fix_assignment_words: skip over assignment statements preceding a + command word before trying to figure out whether or not assignment + statements following a possible declaration command should be + treated specially. Fixes bug reported by Dan Douglas + + + 4/4 + --- +lib/readline/readline.c + - _rl_dispatch_subseq: only call _rl_vi_set_last (and check whether + the key is a text modification command) if the key sequence length + is 1. That keeps the arrow keys from setting the last command + when called in vi command mode. Fixes bug reported by Ian A. + Watson + + 4/6 + --- +lib/readline/bind.c + - rl_parse_and_bind: when parsing a double-quoted string as the value + of a variable, make sure we skip past the leading double quote. + Fix from Andreas Schwab + +variables.c + - hash_lookup: set new local variable last_table_searched to the table + a successful lookup appears in; tested in make_local_variable to + solve the problem below + - make_local_variable: if we find a variable with the tempenv flag + set at the same `level' as variable_context', but not found in the + temporary_env (temp environment preceding the builtin), return it. + The temp environment preceding the function call has already been + merged (in execute_function) into the list of variable contexts the + function sees as shell_variables by the time this is called. Fixes + inconsistency pointed out by Dan Douglas + +subst.c + - expand_arith_string: expanded out contents of expand_string, + expand_string_internal, expand_string_if_necessary to create a + WORD_DESC and call call_expand_word_internal() on it directly. + We don't want process substitution to be performed ( 1<(2) ) should + mean something different in an arithmetic expression context. + It doesn't work to just turn on the DQUOTE flag, since that means + that things like ${x["expression"]} are not expanded correctly. + Fixes problem pointed out by Dan Douglas + + 4/13 + ---- +subst.c + - process_substitute: run the EXIT trap before exiting, as other + shells seem to. Fixes problem pointed out by Dan Douglas + + +lib/readline/readline.c + - readline_internal_setup: call rl_vi_insertion_mode to enter vi + mode instead of rl_vi_insert_mode to avoid resetting the saved last + command information. Posix says that `.' can repeat a command + that was entered on a previous line so we need to save the info. + Fixes bug reported by Ian A. Watson + + 4/14 + ---- +lib/readline/complete.c + - rl_completion_matches: make sure xrealloc returns something non-null + (can happen when interrupted by a signal) before trying to add + matches to match_list + +subst.c + - array_remove_pattern: return NULL right away if array_variable_part + returns an invisible variable + - array_length_reference: handle array_variable_part returning an + invisible variable + - get_var_and_type: handle array_variable_part returning an invisible + variable + + 4/15 + ---- +execute_cmd.c + - execute_command_internal: make sure to run the EXIT trap for group + commands anywhere in pipelines, not just at the end. From a point + raised by Andreas Schwab + +variables.c + - bind_int_variable: make sure invisible flag is unset. Fixes problems + like "declare -ai a; : $(( a[4]=4 ));" + +arrayfunc.c + - array_variable_part: return variable even if invisible flag set, + callers must handle invisible vars + + 4/18 + ---- +builtins/set.def + - unset_builtin: if -n flag given, call unset_nameref instead of + unset_variable + +variables.c + - find_variable_nameref: print warning message if nameref circular + reference detected, return NULL and let caller deal with it + +builtins/declare.def + - declare_builtin: only disallow global references at this point if + we are at the global scope + + 5/16 + ---- +configure.ac + - update release status to beta + + 5/23 + ---- +trap.c + - run_pending_traps: save and restore pipeline around calls to + evalstring() in case we get a trap while running a trap. Have to + figure out the recursive running traps issue elsewhere. Fixes + bug reported by Roman Rakus + - run_pending_traps: make sure to set running_trap to the appropriate + signal value when running a trap command + - run_pending_traps: short-circuit immediately if running_trap set + when invoked. Could change this later to only skip if it would + run the same trap as currently being run (running_trap == sig + 1) + +configure.ac + - add warning if bison not found + +lib/readline/doc/rltech.texi + - new section with an example program illustrating the callback + interface. Suggested by Peng Yu + +examples/loadables/Makefile.in + - remove references to `cut' and `getconf', which were removed in + early March + + 5/28 + ---- +lib/sh/pathphys.c + - sh_realpath: correct inverted two arguments to call to sh_makepath. + Report and fix from Julien Thomas + + 6/7 + --- +execute_cmd.c + - executing_line_number: the else clauses that are conditional on + various options being defined can simply be if clauses -- they are + mutually exclusive and all have `return' in the body. Fixes bug + reported by Flavio Medeiros + + 6/25 + ---- +lib/readline/readline.c + - readline_internal_setup: only sent the meta-key enable string to the + terminal if we've been told to use one and the terminal has been + successfully initialized (RL_ISSTATE (RL_STATE_TERMPREPPED) != 0). + Suggested by Dan Mick + +lib/readline/signals.c + - _rl_signal_handler: call any defined signal hook after calling + rl_resize_terminal when handling a SIGWINCH. We already have called + the original SIGWINCH handler but will not be resending the signal + to ourselves + + 6/27 + ---- +lib/readline/doc/history.3, doc/bash.1 + - fix description of the `$' modifier to note that it expands to the + last *word*, which is not always the last argument. Report from + ariyetz@gmail.com via gnu.org RT + + 6/29 + ---- +lib/glob/smatch.c + - glob_asciiranges: initialize to value of GLOBASCII_DEFAULT instead + of 0 (0 if not defined) + +configure.ac,config.h.in + - --enable-glob-asciiranges-default: new option, controls the value of + GLOBASCII_DEFAULT; use it to turn globasciiranges shopt option on + by default + +doc/bashref.texi + - document new --enable-glob-asciiranges-default configure option + +variables.c + - assign_in_env: implement += value appending semantics for assignments + preceding command names + + 7/4 + --- +expr.c + - set lasttok = NUM in all of the functions that result in a number, + even if it's a boolean, to avoid errors with constructs like + 1 * x = 1, which should be an asignment error. Fixes problem + pointed out by Dan Douglas + +parse.y + - decode_prompt_string: don't bother to call strcpy if + polite_directory_format returns its argument unchanged. It's not + necessary and Mac OS X 10.9 aborts because of a supposed overlapping + string copy. Bug and fix from simon@hitzemann.org + +subst.c + - parameter_brace_find_indir: new function, code from + parameter_brace_expand_indir that looks up the indirectly-referenced + variable, but does not expand it + - parameter_brace_expand_indir: call parameter_brace_find_indir to + look up indirected variable reference + - get_var_and_type: call parameter_brace_find_indir if it looks like we + are trying to manipulate an indirect variable reference like + ${!b%%foo}. This makes a difference if !b references an array + variable. Bug report from Dan Douglas + + 7/6 + --- +lib/sh/casemod.c + - sh_modcase: make sure argument passed to is_basic is <= UCHAR_MAX, + since cval can convert something to a wchar_t greater than UCHAR_MAX. + Fixes bug reported by Tomasz Tomasik + + 7/8 + --- +lib/readline/history.c + - add_history_time: if history_length == 0, referencing history_length + - 1 will result in an array bounds error, so make history_length be + at least 1 before going on. Fixes bug reported by Geng Sheng Liu + + +builtins/setattr.def + - show_func_attributes: display definition (if NODEFS argument is 0) and + attributes for a particular function; used by `declare -fp name' + +builtins/declare.def + - declare_internal: call show_func_attributes if -f supplied with -p. + Fixes inconsistency observed by Linda Walsh + +builtins/common.h + - new extern declaration for show_func_attributes + +builtins/read.def + - read_builtin: check the first supplied variable name for validity + before attempting to read any input, since we know we will have to + at least use that one. Don't check any other names yet. Suggested + by jidanni@jidanni.org + + 7/10 + ---- +redir.c + - do_redirection_internal: when closing a file descriptor with + r_close_this ([n]<&-) count close errors as redirection errors if + errno ends up as EIO or ENOSPC. Originally reported back in April + 2012 by Andrey Zaitsev + + 7/11 + ---- +redir.c + - do_redirection_internal: before calling check_bash_input, make sure + that we don't call check_bash_input for an asynchronous process that + is replacing stdin with something else. The seek backwards affects + the parent process as well, since parents and children share the + file pointer. Fixes problem originally reported in March 2013 by + Martin Jackson + + 7/13 + ---- +doc/{bash.1,bashref.texi} + - slight change to add a description of `shopt -o' suggested by Bruce + Korb + + 7/19 + ---- +lib/readline/histfile.c + - history_do_write: if close returns < 0, make sure we restore the + backup history file and return a non-zero value + - history_truncate_file: if write or close return < 0, make sure we + return a non-zero value + +[bash-4.3-beta frozen] + + 7/21 + ---- +lib/readline/isearch.c + - rl_display_search: now takes an entire search context flags word as + the second argument, instead of just reverse flag; changed callers + - rl_display_search: if the search has failed, add `failed ' to the + beginning of the search prompt + - _rl_isearch_dispatch: if the search has failed, display the entire + search string with an indication that the search failed but with the + last matching line. Suggested by jidanni@jidanni.org + +command.h + - W_ASSIGNINT: new word flag; used internally for make_internal_declare + and set by fix_assignment_words + +execute_cmd.c + - fix_assignment_words: set W_ASSIGNINT if compound assignment and -i + given as option. We don't do anything with the value yet + +subst.c + - shell_expand_word_list: rework the way the option list that is + passed to make_internal_declare is created + + 8/1 + --- +doc/{bash.1,bashref.texi} + - minor changes to description of $! based on a report from Chris + Down + +arrayfunc.c + - assign_array_element_internal: before trying to get an array's max + index to process a negative subscript, make sure the array exists. + Bug report from Geir Hauge + + 8/2 + --- +arrayfunc.c + - assign_array_element_internal: before using array_max_index() when + processing a negative subscript, make sure the variable is an array. + if it's not, use 0 as array_max_index assuming it's a string. + Fixes bug report from Geir Hauge + + 8/3 + --- +Makefile.in + - pcomplete.o: add dependency on $(DEFDIR)/builtext.h. Suggested by + Curtis Doty + + 8/5 + --- +lib/glob/sm_loop.c + - strcompare: short-circuit and return FNM_NOMATCH if the lengths of the + pattern and string (pe - p and se - s, respectively) are not equal + - strcompare: don't bother trying to set *pe or *se to '\0' if that's + what they already are. Fixes bug reported by Geir Hauge + + + 8/6 + --- +doc/{bash.1,bashref.texi},builtins/hash.def,lib/readline/doc/rluser.texi + - minor typo changes from Geir Hauge + +bultins/help.def + - show_longdoc: avoid trying to translate the empty string because it + often translates to some boilerplate about the project and + translation. Report and fix from Geir Hauge + + 8/8 + --- +builtins/help.def + - help_builtin: try two passes through the list of help topics for each + argument: one doing exact string matching and one, if the first pass + fails to find a match, doing string prefix matching like previous + versions. This prevents `help read' from matching both `read' and + `readonly', but allows `help r' to match everything beginning with + `r'. Inspired by report from Geir Hauge + + 8/13 + ---- +builtins/fc.def + - fc_builtin,fc_gethnum: calculate `real' end of the history list and + use it if -0 is specified as the beginning or end of the history + range to list. Doesn't work for fc -e or fc -s by design. Feature + requested by Mike Fied + + 8/16 + ---- +trap.c + - _run_trap_internal: use {save,restore}_parser_state instead of + {save,restore}_token_state. It's more comprehensive + + 8/23 + ---- +doc/bash.1 + - disown: remove repeated text. Report and fix from Thomas Hood + + + 8/25 + ---- +lib/readline/rltty.c + - set_special_char: fix prototype (last arg is rl_command_func_t *) + +sig.c + - set_signal_handler: return oact.sa_handler only if sigaction + succeeds; if it doesn't, return SIG_DFL (reasonable default). From + https://bugzilla.redhat.com/show_bug.cgi?id=911404 + +bashline.c + - attempt_shell_completion: fix to skip assignment statements preceding + command name even if there are no programmable completions defined. + From https://bugzilla.redhat.com/show_bug.cgi?id=994659 + - attempt_shell_completion: if still completing command word following + assignment statements, do command completion even if programmable + completion defined for partial command name entered so far + + 8/26 + ---- +pcomplete.c + - pcomp_filename_completion_function: make sure rl_filename_dequoting_function + is non-NULL before trying to call it. Bug and fix from + Andreas Schwab + +bashline.c + - bash_command_name_stat_hook: if *name is not something we're going + to look up in $PATH (absolute_program(*name) != 0), just call the + usual bash_filename_stat_hook and return those results. This makes + completions like $PWD/exam[TAB] add a trailing slash + + 9/2 + --- +builtins/read.def + - read_builtin: before comparing what we read to the delim, make sure + we are not supposed to be ignoring the delimiter (read -N). We + set the delim to -1, but it's possible to read a character whose + int value ends up being between -1 and -128. Fixes bug + reported by Stephane Chazelas + +doc/{bash.1,bashref.texi} + - word splitting: crib some language from Posix to make it clear that + characters in IFS are treated as field *terminators*, not field + *separators*. Addresses issue raised by DJ Mills + + +lib/readline/{util.c,rldefs.h} + - _rl_stricmp,_rl_strnicmp: now take const char * string arguments; + changed prototype declarations + + 9/5 + --- +doc/{bash.1,bashref.texi} + - [[: modify description of pattern matching to make it clear that the + match is performed as if the extglob option were enabled. From Red + Hat bug https://bugzilla.redhat.com/show_bug.cgi?id=1002078 + + 9/12 + ---- +lib/readline/isearch.c + - _rl_isearch_dispatch: if we read an ESC and it's supposed to + terminate the search, make sure we check for typeahead with + _rl_pushed_input_available, since installing a hook function causes + typeahead to be collected in `ibuffer' (input.c). If there is any, + make sure we still use the ESC as a prefix character. Bug and fix + from Mike Miller + + 9/16 + ---- +builtins/{caller,cd,kill,pushd,wait}.def + - builtin_usage(): make sure call to this sets return status to + EX_USAGE + + 9/18 + ---- +terminal.c + - rl_change_environment: new application-settable variable; if non- + zero (the default), readline will modify LINES and COLUMNS in the + environment when it handles SIGWINCH + - _rl_get_screen_size: if rl_change_environment is non-zero, use setenv + to modify LINES and COLUMNS environment variables + +readline.h + - rl_change_environment: new extern declaration for applications + + 9/22 + ---- +configure.ac + - relstatus: bumped version to bash-4.3-beta2 + + 9/24 + ---- + +lib/readline/readline.c + - bind_arrow_keys_internal: added more key bindings for the numeric key + pad arrow keys on mingw32. Patch from Pierre Muller + + + 10/19 + ----- + +bashline.c + - maybe_restore_tilde: version of restore_tilde that honors `direxpand'; + calls restore_tilde after saving directory expansion hook if + necessary. Report from Andreas Schwab + +builtins/cd.def + - -@: new option, allows cd to use `extended attributes' present in + NFSv4, ZFS; idea taken from ksh93. Attributes associated with a + file are presented as a directory containing the attributes as + individual files. Original patch contributed by Cedric Blancher + + + 10/20 + ----- +aclocal.m4 + - BASH_CHECK_MULTIBYTE: check for wcwidth being broken with unicode + combining characters needs a value to use when cross-compiling. + Bug report from Bert Sutherland + +doc/{bash.1,bashref.texi} + - document new -@ option to cd builtin + + 10/28 + ----- +lib/glob/{{gmisc,glob}.c,glob.h} + - extglob_pattern renamed to extglob_pattern_p, declared in glob.h + +subst.c + - expand_word_internal: typo fix: case to fix " $@\ " bug in bash-4.2 + had a typo (& isexp instead of &&) + + 10/29 + ----- +input.c + - getc_with_restart: make sure local_index and local_bufused are + reset to 0 before returning EOF, in case we are running an interactive + shell without line editing and ignoreeof is set. Report and fix + from Yong Zhang + +lib/readline/search.c + - _rl_nsearch_init: take out extra third argument to rl_message; it + only matches prototype (and maybe format) in cases where + PREFER_STDARG and USE_VARARGS are both undefined, which is rare + + 10/31 + ----- +subst.c + - process_substitute: when opening the named pipe in the child, open + without O_NONBLOCK to avoid race conditions. Happens often on AIX. + Bug report and fix from Michael Haubenwallner + + +builtins/ulimit.def + - RLIMIT_NTHR: if RLIMIT_PTHREAD is not defined, but RLIMIT_NTHR is, + use RLIMIT_NTHR (NetBSD) + + 11/5 + ---- +locale.c + - set_default_locale_vars,set_locale_var: if TEXTDOMAINDIR has been + set, and default_dir has a non-null value, call bindtextdomain(3) + when TEXTDOMAIN is assigned a value. Fixes problem reported by + Michael Arlt + + 11/6 + ---- +builtins/cd.def + - cdxattr: only create synthetic pathname in `buf' if NDIRP argument + is non-null + - change_to_directory: if we have specified -@ and cdxattr returns + failure, fail immediately. Fixes bug reported by Joshuah Hurst + + + 11/12 + ----- +redir.c + - print_redirection: change r_err_and_out (&>) and its append form, + r_append_err_and_out (&>>) cases to separate redirection operator + from filename by a space, in case we have a process substitution. + Fixes bug reported by admn ombres + + 11/15 + ----- +execute_cmd.c + - execute_simple_command: don't close process substitution fds until + we are finished executing any current shell function. Partial fix + for bug reported by John Dawson + +support/shobj-conf + - add support for Darwin 13 (Mac OS X 10.9, Mavericks). Based on a + report by Ludwig Schwardt + + 11/20 + ----- +[bash-4.3-rc1 frozen] + + 11/24 + ----- +builtins/printf.def + - bind_printf_variable: make sure that the variable assigned to is + no longer marked as invisible. Fixes bug reported by NBaH + + + 11/28 + ----- +jobs.c + - delete_old_job: fix off-by-one error in job index in call to + internal_warning. Bug report from Peter Cordes + + 11/30 + ----- +doc/bashref.texi + - add string to description of special parameters with name of + special parameter prefixed by a $, so you can search for $#, + for instance + + 12/2 + ---- +lib/readline/{histexpand.c + - get_history_event: account for current_history() possibly returning + NULL. Report and fix from Pankaj Sharma + + + 12/11 + ----- + +lib/readline/parse-colors.c + - get_funky_string: don't call abort if we see something we can't + parse; just return an error + - _rl_parse_colors: if we encounter an error while parsing $LS_COLORS + we need to leave _rl_color_ext_list as NULL after freeing its + elements, then turn off _rl_colored_stats. Report and fix from Martin + Wesdorp + + 12/13 + ----- + +lib/readline/parse-colors.c + - _rl_parse_colors: if we encounter an unrecognized prefix, throw an + error but try to recover and go on to the next specification + +variables.c + - make_local_variable: for new variables this function creates, set + the att_invisible attribute. All callers from declare_internal. + Indirectly, this is a fix for bug with `declare -n var; var=foo;' + reported by Pierre Gaston + - bind_variable: if assigning to nameref variable that doesn't have + a value yet (e.g., with `declare -n var; var=foo'), don't try to + use the unset name. Fixes a segfault reported by Pierre Gaston + + +execute_cmd.c + - execute_command_internal: make sure last_command_exit_value is set + to 0 after any command executed in the background. Fixes bug + reported by Martin Kealey + + 12/17 + ----- +support/config.{guess,sub} + - updated to latest versions from git + + 12/19 + ----- +parse.y + - struct STRING_SAVER: now has a new `flags' element, to identify the + caller: alias expansion, double-paren parsing, or parse_and_execute + - push_string: now sets flags to PSH_ALIAS if `ap' argument is non-NULL + - push_string: now doesn't attempt to call strlen on a NULL string to + set shell_input_line_size + - parser_expanding_alias, parser_save_alias, parser_restore_alias: new + functions to provide an external interface to push_string and + pop_string; parser_save_alias sets flags element to PSH_SOURCE (could + be renamed PSH_EXTERN someday) + - shell_getc: when yy_getc returns '\0', instead of just testing + whether the pushed_string_list is not-empty before popping it, don't + pop if if the saved string has flags PSH_SOURCE, indicating that + parse_and_execute set it before setting bash_input to the string. + We should continue reading to the end of that string before popping + back to a potential alias. Partial solution for the problem of aliases + with embedded newlines containing `.' commands being executed out of + order reported by Andrew Martin + - shell_getc: when yy_getc returns '\0' and there is a saved string of + type PSH_SOURCE, restart the read without popping the string stack + if we have not read to the end of bash_input.location.string. Rest + of fix for out-of-order execution problem + +externs.h + - parser_expanding_alias, parser_save_alias, parser_restore_alias: new + extern function declarations + +builtins/evalstring.c + - pe_prologue: if the parser is expanding an alias, make sure to add + an unwind-protect to restore the alias; undoes the work that will be + performed by parse_and_execute/parse_string + - parse_and_execute,parse_string: after calling push_stream to save + bash_input, check whether or not the parser is currently expanding + an alias (parser_expanding_alias() != 0). If it is, we want to save + that string in the pushed_string_list, which we do with + parser_save_alias. + + 12/23 + ----- +execute_cmd.c + - execute_for_command: make sure to set line_number before expanding + the word list, so expansion errors have the right line number. + From a report from Ben Okopnik + +expr.c + - exp2: save token pointer before calling readtok(), arrange to use + saved token pointer when printing error token on a division by 0 + error + + 12/27 + ----- +lib/readline/display.c + - rl_redisplay: when calculating effects of invisible characters in a + prompt that is split across physical screen lines to set the indices + of linebreaks, don't bother testing local_prompt_prefix (line 751). + That prefix doesn't matter when calculating prompt visible and + invisible characters. Fixes problem reported by Jinesh Choksi + + +Makefile.in + - install: make sure to use $(DESTDIR) when installing OTHER_DOCS. + Report and fix from Matthias Klose + +doc/texinfo.tex + - updated to version of 2013-09-11 + + 12/28 + ----- +lib/readline/undo.c + - rl_do_undo: if we are undoing from a history entry (rl_undo_list == + current_history()->data), make sure the change to rl_line_buffer is + reflected in the history entry. We use the guts of + rl_maybe_replace_line to do the work. Fixes problem reported by + gregrwm + + 12/30 + ----- +sig.c + - sigint_sighandler: if we get a SIGINT (and this signal handler is + installed) while the wait builtin is running, note that we received + it in the same way as jobs.c:wait_sigint_handler and return. The + various wait_for functions will look for that with CHECK_WAIT_INTR. + This fixes the wait builtin not being interruptible in an interactive + job control shell + + 12/31 + ----- +trap.c + - set_signal_hard_ignored: rename set_signal_ignored to this, since it + both sets original_signals[sig] and sets the HARD_IGNORE flag + - set_signal_ignored: new function, now just sets original_signals[sig] + +trap.h + - set_signal_hard_ignored: new external declaration + +sig.c + - initialize_terminating_signals: call set_signal_hard_ignored instead + of set_signal_ignored for signals with disposition SIG_IGN when the + shell starts + +execute_cmd.c + - setup_async_signals: make sure we get the original dispositions for + SIGINT and SIGQUIT before starting the subshell, and don't call + set_signal_ignored because that sets original_signals[sig]. If we + don't, subsequent attempts to reset handling using trap will fail + because it thinks the original dispositions were SIG_IGN. Posix + interpretation 751 (http://austingroupbugs.net/view.php?id=751) + + 1/2/2014 + -------- +lib/sh/stringvec.c + - strvec_mcreate, strvec_mresize: versions of create and resize that + use malloc and realloc, respectively, instead of xmalloc/xrealloc + +braces.c + - expand_amble,mkseq: use strvec_mcreate/strvec_mresize so we can + catch and handle memory allocation failures instead of aborting + with the xmalloc/xrealloc interface + +lib/sh/strdup.c + - strdup replacement function for ancient systems that don't have it + +lib/sh/itos.c + - mitos: new function, itos that uses strdup instead of savestring + +externs.h + - strvec_mcreate/strvec_mresize: new extern declarations + - mitos: new extern declaration + +configure.ac + - bash version moved to 4.3-rc2 + + 1/6 + --- +doc/bash.1,lib/readline/doc/{rluser.texi,readline.3} + - separate the description of what happens when readline reads the + tty EOF character from the description of delete-char, leaving a + note in the delete-char description about common binding for ^D. + From suggestion by Parke + +lib/readline/doc/{version.texi,history.3,*.texi} + - updated email addresses and copyright dates + + 1/7 + --- +variables.c + - delete_var: new function, just removes a variable from a hash table + and frees it, without doing anything else + - make_variable_value: if we are trying to assign to a nameref variable, + return NULL if the value is null or the empty string or not a valid + identifier + +variables.h + - delete_var: new extern declaration + +subst.h + - ASS_NAMEREF: new define for assignments, means assigning to a nameref + variable + +builtins/declare.def + - declare_internal: if we are creating and assigning to a nameref + variable, make sure the value is a valid variable name (checks done + by make_variable_value via bind_variable_value) and display an + error message, deleting the variable we just created, if it is not. + Fixes bug reported by Peggy Russell + + 1/9 + --- +builtins/declare.def + - declare_internal: turning on nameref attribute for an existing + variable turns off -i/-l/-u/-c attributes (essentially the ones + that cause evaluation at assignment time) for ksh93 compat + +builtins/setattr.def + - show_name_attributes: if asked to display attributes and values for + a nameref variable, don't follow the nameref chain to the end. More + ksh93 compat + + 1/10 + ---- +trap.c + - _run_trap_internal: use {save,restore}_parser_state instead of + {save,restore}_token_state, like in run_pending_traps(); don't + need to save and restore last_command_exit_value as a result + - _run_trap_internal: call {save,restore}_pipeline like in + run_pending_traps() + - run_pending_traps: since we no longer run traps in a signal handler + context, do not block and unblock the trapped signal while the + trap is executing + - run_pending_traps: allow recursive invocations (basically, running + traps from a trap handler) with only a warning if the shell is + compiled in debug mode. If a caller doesn't want this to happen, + it should test running_trap > 0. signal_in_progress (sig) only works + for the signals the shell handles specially + +bashline.c + - bash_event_hook: make sure we clean up readline if interrupt_state + is set, not only when SIGINT is not trapped. check_signals_and_traps + will call check_signals, which calls QUIT, which will longjmp back + to top_level, running the interrupt trap along the way. Fixes the + problem of signal handlers being reset out from under readline, and + not being set properly the next time readline is called, because + signals_set_flag is still set to 1. XXX - might need to do this + for other signals too? + + 1/11 + ---- +subst.h + - SD_GLOB: new define for skip_to_delim; means we are scanning a + glob pattern. + +subst.c + - skip_to_delim: if flags include SD_GLOB, assume we are scanning a + glob pattern. Currently only used to skip bracket expressions + which may contain one of the delimiters + + 1/12 + ---- +subst.c + - parameter_brace_expand: when expanding $@ as part of substring + expansion, pattern substitution, or case modification, don't turn + on the QUOTED_NULL flag. The code that constructs the word to be + returned from expand_word_internal expects a different code path + when $@ is being expanded. Fixes bug reported by Theodoros + V. Kalamatianos + + 1/19 + ---- +subst.c + - list_dequote_escapes: new function; analogue of list_quote_escapes + +pathexp.c + - quote_string_for_globbing: fix case where unescaped ^A is last char + in string; need to pass it through unaltered instead of turning it + into a bare backslash + - quote_string_for_globbing: when quoting for regexp matching in [[, + don't treat backslash as a quote character; quote the backslash as + any other character. Part of investigation into reports from + Eduardo A. Bustamante López + + 1/25 + ---- +builtins/gen-helpfiles.c + - write_helpfiles: add prototype + - make sure to #undef xmalloc/xfree/xrealloc/free if USING_BASH_MALLOC + is defined. the code does not use them, and we don't link against + xmalloc.o. Report from Linda Walsh + +Makefile.in + - variables.o: add dependency on builtins/builtext.h; helps with + parallel builds. Report from Linda Walsh diff --git a/Makefile.in b/Makefile.in index d2eba565a..cf772286a 100644 --- a/Makefile.in +++ b/Makefile.in @@ -1035,6 +1035,7 @@ sig.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array sig.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h sig.o: make_cmd.h subst.h sig.h pathnames.h externs.h sig.o: jobs.h siglist.h trap.h $(DEFSRC)/common.h bashline.h bashhist.h +sig.o: ${DEFDIR}/builtext.h siglist.o: config.h bashtypes.h siglist.h trap.h stringlib.o: bashtypes.h ${BASHINCDIR}/chartypes.h stringlib.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h @@ -1077,7 +1078,7 @@ variables.o: flags.h execute_cmd.h mailcheck.h input.h $(DEFSRC)/common.h variables.o: findcmd.h bashhist.h hashcmd.h pathexp.h variables.o: pcomplete.h ${BASHINCDIR}/chartypes.h variables.o: ${BASHINCDIR}/posixtime.h assoc.h -variables.o: version.h +variables.o: version.h $(DEFDIR)/builtext.h version.o: conftypes.h patchlevel.h version.h xmalloc.o: config.h bashtypes.h ${BASHINCDIR}/ansi_stdlib.h error.h diff --git a/Makefile.in~ b/Makefile.in~ new file mode 100644 index 000000000..6e4163efd --- /dev/null +++ b/Makefile.in~ @@ -0,0 +1,1554 @@ +# Makefile for bash-4.3, version 4.11 +# +# Copyright (C) 1996-2012 Free Software Foundation, Inc. + +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. + +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. + +# You should have received a copy of the GNU General Public License +# along with this program. If not, see . + +# Make sure the first target in the makefile is the right one +all: .made + +PACKAGE = @PACKAGE_NAME@ +VERSION = @PACKAGE_VERSION@ + +PACKAGE_BUGREPORT = @PACKAGE_BUGREPORT@ +PACKAGE_NAME = @PACKAGE_NAME@ +PACKAGE_STRING = @PACKAGE_STRING@ +PACKAGE_VERSION = @PACKAGE_VERSION@ + +PACKAGE_TARNAME = @PACKAGE_TARNAME@ + +# Include some boilerplate Gnu makefile definitions. +prefix = @prefix@ + +exec_prefix = @exec_prefix@ + +datarootdir = @datarootdir@ + +bindir = @bindir@ +libdir = @libdir@ +infodir = @infodir@ +includedir = @includedir@ +datadir = @datadir@ +localedir = @localedir@ + +docdir = @docdir@ + +mandir = @mandir@ +manpfx = man + +man1ext = .1 +man1dir = $(mandir)/$(manpfx)1 +man3ext = .3 +man3dir = $(mandir)/$(manpfx)3 + +htmldir = @htmldir@ + +# Support an alternate destination root directory for package building +DESTDIR = + +topdir = @top_srcdir@ +BUILD_DIR = @BUILD_DIR@ +top_builddir = @BUILD_DIR@ +srcdir = @srcdir@ +VPATH = .:@srcdir@ + +@SET_MAKE@ +CC = @CC@ +CC_FOR_BUILD = @CC_FOR_BUILD@ +YACC = @YACC@ +SHELL = @MAKE_SHELL@ +CP = cp +RM = rm -f +AR = @AR@ +ARFLAGS = @ARFLAGS@ +RANLIB = @RANLIB@ +SIZE = @SIZE@ + +INSTALL = @INSTALL@ +INSTALL_PROGRAM = @INSTALL_PROGRAM@ +INSTALL_SCRIPT = @INSTALL_SCRIPT@ +INSTALL_DATA = @INSTALL_DATA@ +INSTALLMODE= -m 0755 +INSTALLMODE2 = -m 0555 + +TESTSCRIPT = @TESTSCRIPT@ + +DEBUGGER_START_FILE = @DEBUGGER_START_FILE@ + +#If you have purify, and want to use it, uncomment this definition or +# run the make as `make PURIFY=purify' +# or run configure with the --with-purify argument. +PURIFY = @PURIFY@ + +# Here is a rule for making .o files from .c files that does not +# force the type of the machine (like -M_MACHINE) into the flags. +.c.o: + $(RM) $@ + $(CC) $(CCFLAGS) -c $< + +EXEEXT = @EXEEXT@ +OBJEXT = @OBJEXT@ + +# The name of this program and some version information. +VERSPROG = bashversion$(EXEEXT) +VERSOBJ = bashversion.$(OBJEXT) + +Program = bash$(EXEEXT) +Version = @BASHVERS@ +PatchLevel = `$(BUILD_DIR)/$(VERSPROG) -p` +RELSTATUS = @RELSTATUS@ + +Machine = @host_cpu@ +OS = @host_os@ +VENDOR = @host_vendor@ +MACHTYPE = @host@ + +# comment out for release +DEBUG = @DEBUG@ +MALLOC_DEBUG = @MALLOC_DEBUG@ + +THIS_SH = $(BUILD_DIR)/$(Program) + +# PROFILE_FLAGS is either -pg, to generate profiling info for use +# with gprof, or nothing (the default). +PROFILE_FLAGS= @PROFILE_FLAGS@ + +CFLAGS = @CFLAGS@ +CFLAGS_FOR_BUILD = @CFLAGS_FOR_BUILD@ @CROSS_COMPILE@ +CPPFLAGS = @CPPFLAGS@ +CPPFLAGS_FOR_BUILD = @CPPFLAGS_FOR_BUILD@ +LOCAL_CFLAGS = @LOCAL_CFLAGS@ ${DEBUG} ${MALLOC_DEBUG} +DEFS = @DEFS@ +LOCAL_DEFS = @LOCAL_DEFS@ + +LOCALE_DEFS = -DLOCALEDIR='"$(localedir)"' -DPACKAGE='"$(PACKAGE)"' + +LOCAL_LIBS = @LOCAL_LIBS@ +LIBS = $(BUILTINS_LIB) $(LIBRARIES) @LIBS@ +LIBS_FOR_BUILD = + +STATIC_LD = @STATIC_LD@ +LOCAL_LDFLAGS = @LOCAL_LDFLAGS@ + +SYSTEM_FLAGS = -DPROGRAM='"$(Program)"' -DCONF_HOSTTYPE='"$(Machine)"' -DCONF_OSTYPE='"$(OS)"' -DCONF_MACHTYPE='"$(MACHTYPE)"' -DCONF_VENDOR='"$(VENDOR)"' $(LOCALE_DEFS) + +BASE_CCFLAGS = $(PROFILE_FLAGS) $(SYSTEM_FLAGS) $(LOCAL_DEFS) \ + $(DEFS) $(LOCAL_CFLAGS) $(INCLUDES) + +CCFLAGS = $(BASE_CCFLAGS) $(CPPFLAGS) $(CFLAGS) + +CCFLAGS_FOR_BUILD = $(BASE_CCFLAGS) $(CPPFLAGS_FOR_BUILD) $(CFLAGS_FOR_BUILD) + +LDFLAGS = @LDFLAGS@ $(STATIC_LD) $(LOCAL_LDFLAGS) $(PROFILE_FLAGS) $(CFLAGS) +LDFLAGS_FOR_BUILD = @LDFLAGS_FOR_BUILD@ $(LOCAL_LDFLAGS) $(CFLAGS_FOR_BUILD) + +INCLUDES = -I. @RL_INCLUDE@ -I$(srcdir) -I$(BASHINCDIR) -I$(LIBSRC) $(INTL_INC) + +# Maybe add: -Wextra +GCC_LINT_FLAGS = -O -Wall -Wshadow -Wpointer-arith -Wcast-qual -Wno-parentheses \ + -Wcast-align -Wstrict-prototypes -Wconversion -Wformat \ + -Wformat-nonliteral -Wmissing-braces -Wuninitialized \ + -Wmissing-declarations -Winline \ + -Wmissing-prototypes -Wtraditional -Wredundant-decls -pedantic + +GCC_LINT_CFLAGS = $(BASE_CCFLAGS) $(CPPFLAGS) $(GCC_LINT_FLAGS) + +# +# Support libraries +# + +dot = . + +LIBSUBDIR = lib +LIBSRC = $(srcdir)/$(LIBSUBDIR) + +LIBBUILD = ${BUILD_DIR}/${LIBSUBDIR} + +SUBDIR_INCLUDES = -I. @RL_INCLUDE@ -I$(topdir) -I$(topdir)/$(LIBSUBDIR) + +BUILD_INCLUDED_LIBINTL = @BUILD_INCLUDED_LIBINTL@ +USE_INCLUDED_LIBINTL = @USE_INCLUDED_LIBINTL@ + +# the bash library +# the library is a mix of functions that the C library does not provide on +# some platforms and general shell utility functions +SH_LIBSRC = $(LIBSRC)/sh +SH_LIBDIR = $(dot)/${LIBSUBDIR}/sh +SH_ABSSRC = ${topdir}/${SH_LIBSRC} + +SHLIB_SOURCE = ${SH_LIBSRC}/clktck.c ${SH_LIBSRC}/getcwd.c \ + ${SH_LIBSRC}/getenv.c ${SH_LIBSRC}/oslib.c \ + ${SH_LIBSRC}/setlinebuf.c ${SH_LIBSRC}/strchrnul.c \ + ${SH_LIBSRC}/strcasecmp.c ${SH_LIBSRC}/strdup.c \ + ${SH_LIBSRC}/strerror.c \ + ${SH_LIBSRC}/strtod.c ${SH_LIBSRC}/strtol.c \ + ${SH_LIBSRC}/strtoul.c ${SH_LIBSRC}/vprint.c \ + ${SH_LIBSRC}/itos.c ${SH_LIBSRC}/rename.c \ + ${SH_LIBSRC}/zread.c ${SH_LIBSRC}/zwrite.c \ + ${SH_LIBSRC}/shtty.c ${SH_LIBSRC}/inet_aton.c \ + ${SH_LIBSRC}/netopen.c ${SH_LIBSRC}/strpbrk.c \ + ${SH_LIBSRC}/timeval.c ${SH_LIBSRC}/clock.c \ + ${SH_LIBSRC}/makepath.c ${SH_LIBSRC}/pathcanon.c \ + ${SH_LIBSRC}/pathphys.c ${SH_LIBSRC}/stringlist.c \ + ${SH_LIBSRC}/stringvec.c ${SH_LIBSRC}/tmpfile.c \ + ${SH_LIBSRC}/spell.c ${SH_LIBSRC}/strtrans.c \ + ${SH_LIBSRC}/strcasestr.c ${SH_LIBSRC}/shquote.c \ + ${SH_LIBSRC}/snprintf.c ${SH_LIBSRC}/mailstat.c \ + ${SH_LIBSRC}/fmtulong.c ${SH_LIBSRC}/fmtullong.c \ + ${SH_LIBSRC}/strtoll.c ${SH_LIBSRC}/strtoull.c \ + ${SH_LIBSRC}/strtoimax.c ${SH_LIBSRC}/strtoumax.c \ + ${SH_LIBSRC}/fmtumax.c ${SH_LIBSRC}/netconn.c \ + ${SH_LIBSRC}/mktime.c ${SH_LIBSRC}/strftime.c \ + ${SH_LIBSRC}/memset.c ${SH_LIBSRC}/mbschr.c \ + ${SH_LIBSRC}/zcatfd.c ${SH_LIBSRC}/shmatch.c \ + ${SH_LIBSRC}/strnlen.c ${SH_LIBSRC}/winsize.c \ + ${SH_LIBSRC}/eaccess.c ${SH_LIBSRC}/wcsdup.c \ + ${SH_LIBSRC}/zmapfd.c ${SH_LIBSRC}/fpurge.c \ + ${SH_LIBSRC}/zgetline.c ${SH_LIBSRC}/mbscmp.c \ + ${SH_LIBSRC}/casemod.c ${SH_LIBSRC}/uconvert.c \ + ${SH_LIBSRC}/ufuncs.c ${SH_LIBSRC}/dprintf.c \ + ${SH_LIBSRC}/input_avail.c ${SH_LIBSRC}/mbscasecmp.c \ + ${SH_LIBSRC}/fnxform.c ${SH_LIBSRC}/unicode.c \ + ${SH_LIBSRC}/wcswidth.c ${SH_LIBSRC}/wcsnwidth.c \ + ${SH_LIBSRC}/shmbchar.c + +SHLIB_LIB = -lsh +SHLIB_LIBNAME = libsh.a +SHLIB_LIBRARY = ${SH_LIBDIR}/${SHLIB_LIBNAME} +SHLIB_LDFLAGS = -L${SH_LIBDIR} +SHLIB_DEP = ${SHLIB_LIBRARY} + +# we assume for now that readline source is being shipped with bash +RL_LIBSRC = $(LIBSRC)/readline +RL_LIBDOC = $(RL_LIBSRC)/doc +RL_LIBDIR = @RL_LIBDIR@ +RL_ABSSRC = ${topdir}/$(RL_LIBDIR) + +RL_INCLUDEDIR = @RL_INCLUDEDIR@ + +READLINE_LIB = @READLINE_LIB@ +READLINE_LIBRARY = $(RL_LIBDIR)/libreadline.a +READLINE_LDFLAGS = -L${RL_LIBDIR} +READLINE_DEP = @READLINE_DEP@ + +# The source, object and documentation of the GNU Readline library. +READLINE_SOURCE = $(RL_LIBSRC)/rldefs.h $(RL_LIBSRC)/rlconf.h \ + $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/tcap.h \ + $(RL_LIBSRC)/chardefs.h $(RL_LIBSRC)/keymaps.h \ + $(RL_LIBSRC)/history.h $(RL_LIBSRC)/histlib.h \ + $(RL_LIBSRC)/posixstat.h $(RL_LIBSRC)/tilde.h \ + $(RL_LIBSRC)/rlstdc.h ${RL_LIBSRC}/xmalloc.h \ + $(RL_LIBSRC)/rlshell.h ${RL_LIBSRC}/rlprivate.h \ + $(RL_LIBSRC)/colors.h $(RL_LIBSRC)/parse-colors.h \ + $(RL_LIBSRC)/funmap.c $(RL_LIBSRC)/emacs_keymap.c \ + $(RL_LIBSRC)/search.c $(RL_LIBSRC)/vi_keymap.c \ + $(RL_LIBSRC)/keymaps.c $(RL_LIBSRC)/parens.c \ + $(RL_LIBSRC)/vi_mode.c $(RL_LIBSRC)/callback.c \ + $(RL_LIBSRC)/readline.c $(RL_LIBSRC)/tilde.c \ + $(RL_LIBSRC)/rltty.c $(RL_LIBSRC)/complete.c \ + $(RL_LIBSRC)/bind.c $(RL_LIBSRC)/isearch.c \ + $(RL_LIBSRC)/display.c $(RL_LIBSRC)/signals.c \ + $(RL_LIBSRC)/util.c $(RL_LIBSRC)/kill.c $(RL_LIBSRC)/text.c \ + $(RL_LIBSRC)/undo.c $(RL_LIBSRC)/macro.c \ + $(RL_LIBSRC)/terminal.c $(RL_LIBSRC)/nls.c \ + $(RL_LIBSRC)/input.c $(RL_LIBSRC)/xmalloc.c \ + $(RL_LIBSRC)/shell.c $(RL_LIBSRC)/savestring.c \ + $(RL_LIBSRC)/colors.c $(RL_LIBSRC)/parse-colors.c \ + $(RL_LIBSRC)/misc.c $(RL_LIBSRC)/mbutil.c $(RL_LIBSRC)/compat.c \ + $(RL_LIBSRC)/histexpand.c $(RL_LIBSRC)/history.c \ + $(RL_LIBSRC)/histsearch.c $(RL_LIBSRC)/histfile.c + +READLINE_OBJ = $(RL_LIBDIR)/readline.o $(RL_LIBDIR)/funmap.o \ + $(RL_LIBDIR)/parens.o $(RL_LIBDIR)/search.o \ + $(RL_LIBDIR)/keymaps.o $(RL_LIBDIR)/xmalloc.o \ + $(RL_LIBDIR)/rltty.o $(RL_LIBDIR)/complete.o \ + $(RL_LIBDIR)/bind.o $(RL_LIBDIR)/isearch.o \ + $(RL_LIBDIR)/display.o $(RL_LIBDIR)/signals.o \ + $(RL_LIBDIR)/tilde.o $(RL_LIBDIR)/util.o \ + $(RL_LIBDIR)/kill.o $(RL_LIBDIR)/undo.o $(RL_LIBDIR)/nls.o \ + $(RL_LIBDIR)/macro.o $(RL_LIBDIR)/input.o \ + $(RL_LIBDIR)/terminal.o $(RL_LIBDIR)/callback.o \ + $(RL_LIBDIR)/shell.o $(RL_LIBDIR)/savestring.o \ + $(RL_LIBDIR)/mbutil.o $(RL_LIBDIR)/compat.o \ + $(RL_LIBDIR)/history.o $(RL_LIBDIR)/histexpand.o \ + $(RL_LIBDIR)/histsearch.o $(RL_LIBDIR)/histfile.o \ + $(RL_LIBDIR)/colors.o $(RL_LIBDIR)/parse-colors.o + +HIST_LIBSRC = $(LIBSRC)/readline +HIST_LIBDIR = @HIST_LIBDIR@ +HIST_ABSSRC = ${topdir}/$(HIST_LIBDIR) + +HISTORY_LIB = @HISTORY_LIB@ +HISTORY_LIBRARY = $(HIST_LIBDIR)/libhistory.a +HISTORY_LDFLAGS = -L$(HIST_LIBDIR) +HISTORY_DEP = @HISTORY_DEP@ + +# The source, object and documentation of the history library. +HISTORY_SOURCE = $(HIST_LIBSRC)/history.c $(HIST_LIBSRC)/histexpand.c \ + $(HIST_LIBSRC)/histsearch.c $(HIST_LIBSRC)/histfile.c \ + $(HIST_LIBSRC)/shell.c \ + $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/histlib.h +HISTORY_OBJ = $(HIST_LIBDIR)/history.o $(HIST_LIBDIR)/histexpand.o \ + $(HIST_LIBDIR)/histsearch.o $(HIST_LIBDIR)/histfile.o \ + $(HIST_LIBDIR)/shell.o + +# You only need termcap (or curses) if you are linking with GNU Readline. +TERM_LIBSRC = $(LIBSRC)/termcap +TERM_LIBDIR = $(dot)/$(LIBSUBDIR)/termcap +TERM_ABSSRC = ${topdir}/$(TERM_LIBDIR) + +TERMCAP_LIB = @TERMCAP_LIB@ +TERMCAP_LIBRARY = $(TERM_LIBDIR)/libtermcap.a +TERMCAP_LDFLAGS = -L$(TERM_LIBDIR) +TERMCAP_DEP = @TERMCAP_DEP@ + +TERMCAP_SOURCE = $(TERM_LIBSRC)/termcap.c $(TERM_LIBSRC)/tparam.c +TERMCAP_OBJ = $(TERM_LIBDIR)/termcap.o $(TERM_LIBDIR)/tparam.o + +GLOB_LIBSRC = $(LIBSRC)/glob +GLOB_LIBDIR = $(dot)/$(LIBSUBDIR)/glob +GLOB_ABSSRC = ${topdir}/$(GLOB_LIBDIR) + +GLOB_LIB = -lglob +GLOB_LIBRARY = $(GLOB_LIBDIR)/libglob.a +GLOB_LDFLAGS = -L$(GLOB_LIBDIR) +GLOB_DEP = $(GLOB_LIBRARY) + +GLOB_SOURCE = $(GLOB_LIBSRC)/glob.c $(GLOB_LIBSRC)/strmatch.c \ + $(GLOB_LIBSRC)/smatch.c $(GLOB_LIBSRC)/xmbsrtowcs.c \ + $(GLOB_LIBSRC)/glob_loop.c $(GLOB_LIBSRC)/sm_loop.c \ + $(GLOB_LIBSRC)/gmisc.c \ + $(GLOB_LIBSRC)/glob.h $(GLOB_LIBSRC)/strmatch.h +GLOB_OBJ = $(GLOB_LIBDIR)/glob.o $(GLOB_LIBDIR)/strmatch.o \ + $(GLOB_LIBDIR)/smatch.o $(GLOB_LIBDIR)/xmbsrtowcs.o \ + $(GLOB_LIBDIR)/gmisc.o + +# The source, object and documentation for the GNU Tilde library. +TILDE_LIBSRC = $(LIBSRC)/tilde +TILDE_LIBDIR = $(dot)/$(LIBSUBDIR)/tilde +TILDE_ABSSRC = ${topdir}/$(TILDE_LIBDIR) + +TILDE_LIB = @TILDE_LIB@ +TILDE_LIBRARY = $(TILDE_LIBDIR)/libtilde.a +TILDE_LDFLAGS = -L$(TILDE_LIBDIR) +TILDE_DEP = $(TILDE_LIBRARY) + +TILDE_SOURCE = $(TILDE_LIBSRC)/tilde.c $(TILDE_LIBSRC)/tilde.h +TILDE_OBJ = $(TILDE_LIBDIR)/tilde.o + +# libintl +INTL_LIBSRC = $(LIBSRC)/intl +INTL_LIBDIR = $(dot)/$(LIBSUBDIR)/intl +INTL_ABSSRC = ${topdir}/$(INTL_LIB) +INTL_BUILDDIR = ${LIBBUILD}/intl + +INTL_LIB = @LIBINTL@ +INTL_LIBRARY = $(INTL_LIBDIR)/libintl.a +INTL_DEP = @INTL_DEP@ +INTL_INC = @INTL_INC@ + +LIBINTL_H = @LIBINTL_H@ + +# libiconv +LIBICONV = @LIBICONV@ + +# tests +LIBINTL = @LIBINTL@ +LTLIBINTL = @LTLIBINTL@ +INTLLIBS = @INTLLIBS@ +INTLOBJS = @INTLOBJS@ + +# Our malloc. +MALLOC_TARGET = @MALLOC_TARGET@ + +# set to alloca.o if we are using the C alloca in lib/malloc +ALLOCA = @ALLOCA@ + +ALLOC_LIBSRC = $(LIBSRC)/malloc +ALLOC_LIBDIR = $(dot)/$(LIBSUBDIR)/malloc +ALLOC_ABSSRC = ${topdir}/$(ALLOC_LIBDIR) + +MALLOC_SRC = @MALLOC_SRC@ +MALLOC_OTHERSRC = ${ALLOC_LIBSRC}/trace.c ${ALLOC_LIBSRC}/stats.c \ + ${ALLOC_LIBSRC}/table.c ${ALLOC_LIBSRC}/watch.c +MALLOC_SOURCE = ${ALLOC_LIBSRC}/${MALLOC_SRC} ${MALLOC_OTHERSRC} +MALLOC_CFLAGS = -DRCHECK -Dbotch=programming_error ${MALLOC_DEBUG} + +MALLOC_LIB = @MALLOC_LIB@ +MALLOC_LIBRARY = @MALLOC_LIBRARY@ +MALLOC_LDFLAGS = @MALLOC_LDFLAGS@ +MALLOC_DEP = @MALLOC_DEP@ + +ALLOC_HEADERS = $(ALLOC_LIBSRC)/getpagesize.h $(ALLOC_LIBSRC)/shmalloc.h \ + $(ALLOC_LIBSRC)/imalloc.h $(ALLOC_LIBSRC)/mstats.h \ + $(ALLOC_LIBSRC)/table.h $(ALLOC_LIBSRC)/watch.h + +$(MALLOC_LIBRARY): ${MALLOC_SOURCE} ${ALLOC_HEADERS} config.h + @(cd $(ALLOC_LIBDIR) && \ + $(MAKE) $(MFLAGS) \ + MALLOC_CFLAGS="$(MALLOC_CFLAGS)" ${MALLOC_TARGET} ) || exit 1 + +BASHINCDIR = ${srcdir}/include +BASHINCFILES = $(BASHINCDIR)/posixstat.h $(BASHINCDIR)/ansi_stdlib.h \ + $(BASHINCDIR)/filecntl.h $(BASHINCDIR)/posixdir.h \ + $(BASHINCDIR)/memalloc.h $(BASHINCDIR)/stdc.h \ + $(BASHINCDIR)/posixjmp.h $(BASHINCDIR)/posixwait.h \ + $(BASHINCDIR)/posixtime.h $(BASHINCDIR)/systimes.h \ + $(BASHINCDIR)/unionwait.h $(BASHINCDIR)/maxpath.h \ + $(BASHINCDIR)/shtty.h $(BASHINCDIR)/typemax.h \ + $(BASHINCDIR)/ocache.h + +LIBRARIES = $(GLOB_LIB) $(SHLIB_LIB) $(READLINE_LIB) $(HISTORY_LIB) $(TERMCAP_LIB) \ + $(TILDE_LIB) $(MALLOC_LIB) $(INTL_LIB) $(LIBICONV) $(LOCAL_LIBS) + +LIBDEP = $(GLOB_DEP) $(SHLIB_DEP) $(INTL_DEP) $(READLINE_DEP) $(HISTORY_DEP) $(TERMCAP_DEP) \ + $(TILDE_DEP) $(MALLOC_DEP) + +LIBRARY_LDFLAGS = $(READLINE_LDFLAGS) $(HISTORY_LDFLAGS) $(GLOB_LDFLAGS) \ + $(TILDE_LDFLAGS) $(MALLOC_LDFLAGS) $(SHLIB_LDFLAGS) + +# +# The shell itself +# + +# The main source code for the Bourne Again SHell. +CSOURCES = shell.c eval.c parse.y general.c make_cmd.c print_cmd.c y.tab.c \ + dispose_cmd.c execute_cmd.c variables.c $(GLOBC) version.c \ + expr.c copy_cmd.c flags.c subst.c hashcmd.c hashlib.c mailcheck.c \ + test.c trap.c alias.c jobs.c nojobs.c $(ALLOC_FILES) braces.c \ + input.c bashhist.c array.c arrayfunc.c assoc.c sig.c pathexp.c \ + unwind_prot.c siglist.c bashline.c bracecomp.c error.c \ + list.c stringlib.c locale.c findcmd.c redir.c \ + pcomplete.c pcomplib.c syntax.c xmalloc.c + +HSOURCES = shell.h flags.h trap.h hashcmd.h hashlib.h jobs.h builtins.h \ + general.h variables.h config.h $(ALLOC_HEADERS) alias.h \ + quit.h unwind_prot.h syntax.h ${GRAM_H} \ + command.h input.h error.h bashansi.h dispose_cmd.h make_cmd.h \ + subst.h externs.h siglist.h bashhist.h bashline.h bashtypes.h \ + array.h arrayfunc.h sig.h mailcheck.h bashintl.h bashjmp.h \ + execute_cmd.h parser.h pathexp.h pathnames.h pcomplete.h assoc.h \ + $(BASHINCFILES) + +SOURCES = $(CSOURCES) $(HSOURCES) $(BUILTIN_DEFS) + +# header files chosen based on running of configure +SIGNAMES_H = @SIGNAMES_H@ + +# object files chosen based on running of configure +JOBS_O = @JOBS_O@ +SIGLIST_O = @SIGLIST_O@ +SIGNAMES_O = @SIGNAMES_O@ + +# Matching object files. +OBJECTS = shell.o eval.o y.tab.o general.o make_cmd.o print_cmd.o $(GLOBO) \ + dispose_cmd.o execute_cmd.o variables.o copy_cmd.o error.o \ + expr.o flags.o $(JOBS_O) subst.o hashcmd.o hashlib.o mailcheck.o \ + trap.o input.o unwind_prot.o pathexp.o sig.o test.o version.o \ + alias.o array.o arrayfunc.o assoc.o braces.o bracecomp.o bashhist.o \ + bashline.o $(SIGLIST_O) list.o stringlib.o locale.o findcmd.o redir.o \ + pcomplete.o pcomplib.o syntax.o xmalloc.o $(SIGNAMES_O) + +# Where the source code of the shell builtins resides. +BUILTIN_SRCDIR=$(srcdir)/builtins +DEFSRC=$(BUILTIN_SRCDIR) +BUILTIN_ABSSRC=${topdir}/builtins +DEFDIR = $(dot)/builtins +DEBUGGER_DIR = $(dot)/debugger + +BUILTIN_DEFS = $(DEFSRC)/alias.def $(DEFSRC)/bind.def $(DEFSRC)/break.def \ + $(DEFSRC)/builtin.def $(DEFSRC)/cd.def $(DEFSRC)/colon.def \ + $(DEFSRC)/command.def ${DEFSRC}/complete.def \ + $(DEFSRC)/caller.def $(DEFSRC)/declare.def \ + $(DEFSRC)/echo.def $(DEFSRC)/enable.def $(DEFSRC)/eval.def \ + $(DEFSRC)/exec.def $(DEFSRC)/exit.def $(DEFSRC)/fc.def \ + $(DEFSRC)/fg_bg.def $(DEFSRC)/hash.def $(DEFSRC)/help.def \ + $(DEFSRC)/history.def $(DEFSRC)/jobs.def $(DEFSRC)/kill.def \ + $(DEFSRC)/let.def $(DEFSRC)/read.def $(DEFSRC)/return.def \ + $(DEFSRC)/set.def $(DEFSRC)/setattr.def $(DEFSRC)/shift.def \ + $(DEFSRC)/source.def $(DEFSRC)/suspend.def $(DEFSRC)/test.def \ + $(DEFSRC)/times.def $(DEFSRC)/trap.def $(DEFSRC)/type.def \ + $(DEFSRC)/ulimit.def $(DEFSRC)/umask.def $(DEFSRC)/wait.def \ + $(DEFSRC)/getopts.def $(DEFSRC)/reserved.def \ + $(DEFSRC)/pushd.def $(DEFSRC)/shopt.def $(DEFSRC)/printf.def \ + $(DEFSRC)/mapfile.def +BUILTIN_C_SRC = $(DEFSRC)/mkbuiltins.c $(DEFSRC)/common.c \ + $(DEFSRC)/evalstring.c $(DEFSRC)/evalfile.c \ + $(DEFSRC)/bashgetopt.c $(GETOPT_SOURCE) +BUILTIN_C_OBJ = $(DEFDIR)/common.o $(DEFDIR)/evalstring.o \ + $(DEFDIR)/evalfile.o $(DEFDIR)/bashgetopt.o +BUILTIN_OBJS = $(DEFDIR)/alias.o $(DEFDIR)/bind.o $(DEFDIR)/break.o \ + $(DEFDIR)/builtin.o $(DEFDIR)/cd.o $(DEFDIR)/colon.o \ + $(DEFDIR)/command.o $(DEFDIR)/caller.o $(DEFDIR)/declare.o \ + $(DEFDIR)/echo.o $(DEFDIR)/enable.o $(DEFDIR)/eval.o \ + $(DEFDIR)/exec.o $(DEFDIR)/exit.o $(DEFDIR)/fc.o \ + $(DEFDIR)/fg_bg.o $(DEFDIR)/hash.o $(DEFDIR)/help.o \ + $(DEFDIR)/history.o $(DEFDIR)/jobs.o $(DEFDIR)/kill.o \ + $(DEFDIR)/let.o $(DEFDIR)/pushd.o $(DEFDIR)/read.o \ + $(DEFDIR)/return.o $(DEFDIR)/shopt.o $(DEFDIR)/printf.o \ + $(DEFDIR)/set.o $(DEFDIR)/setattr.o $(DEFDIR)/shift.o \ + $(DEFDIR)/source.o $(DEFDIR)/suspend.o $(DEFDIR)/test.o \ + $(DEFDIR)/times.o $(DEFDIR)/trap.o $(DEFDIR)/type.o \ + $(DEFDIR)/ulimit.o $(DEFDIR)/umask.o $(DEFDIR)/wait.o \ + $(DEFDIR)/getopts.o $(DEFDIR)/mapfile.o $(BUILTIN_C_OBJ) +GETOPT_SOURCE = $(DEFSRC)/getopt.c $(DEFSRC)/getopt.h +PSIZE_SOURCE = $(DEFSRC)/psize.sh $(DEFSRC)/psize.c + +BUILTINS_LIBRARY = $(DEFDIR)/libbuiltins.a +BUILTINS_LIB = -lbuiltins +BUILTINS_LDFLAGS = -L$(DEFDIR) +BUILTINS_DEP = $(BUILTINS_LIBRARY) + +# Documentation for the shell. +DOCSRC = $(srcdir)/doc +DOCDIR = $(dot)/doc + +# Translations and other i18n support files +PO_SRC = $(srcdir)/po/ +PO_DIR = $(dot)/po/ + +SIGNAMES_SUPPORT = $(SUPPORT_SRC)mksignames.c + +SUPPORT_SRC = $(srcdir)/support/ +SDIR = $(dot)/support/ + +TESTS_SUPPORT = recho$(EXEEXT) zecho$(EXEEXT) printenv$(EXEEXT) xcase$(EXEEXT) +CREATED_SUPPORT = signames.h recho$(EXEEXT) zecho$(EXEEXT) printenv$(EXEEXT) \ + tests/recho$(EXEEXT) tests/zecho$(EXEEXT) \ + tests/printenv$(EXEEXT) xcase$(EXEEXT) tests/xcase$(EXEEXT) \ + mksignames$(EXEEXT) lsignames.h \ + mksyntax${EXEEXT} syntax.c $(VERSPROG) $(VERSOBJ) \ + buildversion.o mksignames.o signames.o buildsignames.o +CREATED_CONFIGURE = config.h config.cache config.status config.log \ + stamp-h po/POTFILES config.status.lineno +CREATED_MAKEFILES = Makefile builtins/Makefile doc/Makefile \ + lib/readline/Makefile lib/glob/Makefile \ + lib/sh/Makefile lib/tilde/Makefile lib/malloc/Makefile \ + lib/termcap/Makefile examples/loadables/Makefile \ + examples/loadables/perl/Makefile support/Makefile \ + lib/intl/Makefile po/Makefile po/Makefile.in + +OTHER_DOCS = $(srcdir)/CHANGES $(srcdir)/COMPAT $(srcdir)/NEWS $(srcdir)/POSIX \ + $(srcdir)/RBASH $(srcdir)/README +OTHER_INSTALLED_DOCS = CHANGES COMPAT NEWS POSIX RBASH README + +# Keep GNU Make from exporting the entire environment for small machines. +.NOEXPORT: + +.made: $(Program) bashbug + @echo "$(Program) last made for a $(Machine) running $(OS)" >.made + +$(Program): .build $(OBJECTS) $(BUILTINS_DEP) $(LIBDEP) + $(RM) $@ + $(PURIFY) $(CC) $(BUILTINS_LDFLAGS) $(LIBRARY_LDFLAGS) $(LDFLAGS) -o $(Program) $(OBJECTS) $(LIBS) + ls -l $(Program) + -$(SIZE) $(Program) + +.build: $(SOURCES) config.h Makefile version.h $(VERSPROG) + @echo + @echo " ***********************************************************" + @echo " * *" + @echo " * `$(BUILD_DIR)/$(VERSPROG) -l`" + @echo " * *" + @echo " ***********************************************************" + @echo + +bashbug: $(SUPPORT_SRC)bashbug.sh config.h Makefile $(VERSPROG) + @sed -e "s%!MACHINE!%$(Machine)%" -e "s%!OS!%$(OS)%" \ + -e "s%!CFLAGS!%$(CCFLAGS)%" -e "s%!CC!%$(CC)%" \ + -e "s%!RELEASE!%$(Version)%" -e "s%!PATCHLEVEL!%$(PatchLevel)%" \ + -e "s%!MACHTYPE!%$(MACHTYPE)%" -e "s%!RELSTATUS!%$(RELSTATUS)%" \ + $(SUPPORT_SRC)bashbug.sh > $@ + @chmod a+rx bashbug + +strip: $(Program) .made + strip $(Program) + ls -l $(Program) + -$(SIZE) $(Program) + +lint: + ${MAKE} ${MFLAGS} CFLAGS='${GCC_LINT_FLAGS}' .made + +version.h: $(SOURCES) config.h Makefile patchlevel.h + $(SHELL) $(SUPPORT_SRC)mkversion.sh -b -S ${topdir} -s $(RELSTATUS) -d $(Version) -o newversion.h \ + && mv newversion.h version.h + +bashversion$(EXEEXT): patchlevel.h conftypes.h version.h buildversion.o $(SUPPORT_SRC)bashversion.c + $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(SUPPORT_SRC)bashversion.c buildversion.o ${LIBS_FOR_BUILD} + +buildversion.o: version.h conftypes.h patchlevel.h $(srcdir)/version.c + $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) -DBUILDTOOL -c -o $@ $(srcdir)/version.c + +# old rules +GRAM_H = parser-built +y.tab.o: y.tab.h y.tab.c ${GRAM_H} command.h ${BASHINCDIR}/stdc.h input.h +${GRAM_H}: y.tab.h + @-if test -f y.tab.h ; then \ + cmp -s $@ y.tab.h 2>/dev/null || cp -p y.tab.h $@; \ + fi + +y.tab.c: parse.y +# -if test -f y.tab.h; then mv -f y.tab.h old-y.tab.h; fi + $(YACC) -d $(srcdir)/parse.y + touch parser-built +# -if cmp -s old-y.tab.h y.tab.h; then mv old-y.tab.h y.tab.h; else cp -p y.tab.h ${GRAM_H}; fi + +y.tab.h: y.tab.c + @true + + +# Subdirs will often times want version.h, so they'll change back up to +# the top level and try to create it. This causes parallel build issues +# so just force top level sanity before we descend. +$(LIBDEP): .build +#$(LIBDEP): version.h + +$(READLINE_LIBRARY): config.h $(READLINE_SOURCE) + @echo making $@ in ${RL_LIBDIR} + @( { test "${RL_LIBDIR}" = "${libdir}" && exit 0; } || \ + cd ${RL_LIBDIR} && $(MAKE) $(MFLAGS) libreadline.a) || exit 1 + +$(HISTORY_LIBRARY): config.h $(HISTORY_SOURCE) $(READLINE_DEP) + @echo making $@ in ${HIST_LIBDIR} + @( { test "${HIST_LIBDIR}" = "${libdir}" && exit 0; } || \ + cd ${HIST_LIBDIR} && $(MAKE) $(MFLAGS) libhistory.a) || exit 1 + +$(GLOB_LIBRARY): config.h $(GLOB_SOURCE) + @echo making $@ in ${GLOB_LIBDIR} + @(cd ${GLOB_LIBDIR} && \ + $(MAKE) $(MFLAGS) DEBUG=${DEBUG} libglob.a) || exit 1 + +$(TILDE_LIBRARY): config.h $(TILDE_SOURCE) + @echo making $@ in ${TILDE_LIBDIR} + @(cd ${TILDE_LIBDIR} && \ + $(MAKE) $(MFLAGS) libtilde.a) || exit 1 + +$(TERMCAP_LIBRARY): config.h ${TERMCAP_SOURCE} + @echo making $@ in ${TERM_LIBDIR} + @(cd ${TERM_LIBDIR} && \ + $(MAKE) $(MFLAGS) libtermcap.a) || exit 1 + +$(SHLIB_LIBRARY): config.h ${SHLIB_SOURCE} + @echo making $@ in ${SH_LIBDIR} + @(cd ${SH_LIBDIR} && \ + $(MAKE) $(MFLAGS) DEBUG=${DEBUG} ${SHLIB_LIBNAME}) || exit 1 + +${INTL_LIBRARY}: config.h ${INTL_LIBDIR}/Makefile + @echo making $@ in ${INTL_LIBDIR} + @(cd ${INTL_LIBDIR} && \ + $(MAKE) $(MFLAGS) all) || exit 1 + +${LIBINTL_H}: ${INTL_DEP} + +signames.o: $(SUPPORT_SRC)signames.c + $(RM) $@ + $(CC) $(CCFLAGS) -c $(SUPPORT_SRC)signames.c + +buildsignames.o: $(SUPPORT_SRC)signames.c + $(RM) $@ + $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) -DBUILDTOOL -o $@ -c $(SUPPORT_SRC)signames.c + +mksignames.o: $(SUPPORT_SRC)mksignames.c + $(RM) $@ + $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) -DBUILDTOOL -c $(SUPPORT_SRC)mksignames.c + +mksignames$(EXEEXT): mksignames.o buildsignames.o + $(RM) $@ + $(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ mksignames.o buildsignames.o ${LIBS_FOR_BUILD} + +mksyntax$(EXEEXT): ${srcdir}/mksyntax.c config.h syntax.h ${BASHINCDIR}/chartypes.h + $(RM) $@ + ${CC_FOR_BUILD} ${CCFLAGS_FOR_BUILD} ${LDFLAGS_FOR_BUILD} -o $@ ${srcdir}/mksyntax.c ${LIBS_FOR_BUILD} + +# make a list of signals for the local system -- this is done when we're +# *not* cross-compiling +lsignames.h: mksignames$(EXEEXT) + $(RM) $@ + ./mksignames$(EXEEXT) $@ + +# copy the correct signames header file to signames.h +signames.h: $(SIGNAMES_H) + -if cmp -s $(SIGNAMES_H) $@ ; then :; else $(RM) $@ ; $(CP) $(SIGNAMES_H) $@ ; fi + +syntax.c: mksyntax${EXEEXT} $(srcdir)/syntax.h + $(RM) $@ + ./mksyntax$(EXEEXT) -o $@ + +$(BUILTINS_LIBRARY): $(BUILTIN_DEFS) $(BUILTIN_C_SRC) config.h ${BASHINCDIR}/memalloc.h $(DEFDIR)/builtext.h version.h + @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) DEBUG=${DEBUG} targets ) || exit 1 + +# these require special rules to circumvent make builtin rules +${DEFDIR}/common.o: $(BUILTIN_SRCDIR)/common.c + @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) DEBUG=${DEBUG} common.o) || exit 1 + +${DEFDIR}/bashgetopt.o: $(BUILTIN_SRCDIR)/bashgetopt.c + @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) DEBUG=${DEBUG} bashgetopt.o) || exit 1 + +${DEFDIR}/builtext.h: $(BUILTIN_DEFS) + @(cd $(DEFDIR) && $(MAKE) $(MFLAGS) builtext.h ) || exit 1 + +# For the justification of the following Makefile rules, see node +# `Automatic Remaking' in GNU Autoconf documentation. + +Makefile makefile: config.status $(srcdir)/Makefile.in + CONFIG_FILES=Makefile CONFIG_HEADERS= $(SHELL) ./config.status + +Makefiles makefiles: config.status $(srcdir)/Makefile.in + @for mf in $(CREATED_MAKEFILES); do \ + CONFIG_FILES=$$mf CONFIG_HEADERS= $(SHELL) ./config.status ; \ + done + +config.h: stamp-h + +stamp-h: config.status $(srcdir)/config.h.in $(srcdir)/config-top.h $(srcdir)/config-bot.h + CONFIG_FILES= CONFIG_HEADERS=config.h $(SHELL) ./config.status + +config.status: $(srcdir)/configure + $(SHELL) ./config.status --recheck + +pathnames.h: Makefile $(srcdir)/pathnames.h.in + @sed -e 's|@DEBUGGER_START_FILE\@|${DEBUGGER_START_FILE}|g' $(srcdir)/pathnames.h.in > pathnames.tmp + @if test -f $@; then \ + cmp -s pathnames.tmp $@ || mv pathnames.tmp $@; \ + else \ + mv pathnames.tmp $@; \ + fi + @${RM} pathnames.tmp + +# comment out for distribution +$(srcdir)/configure: $(srcdir)/configure.ac $(srcdir)/aclocal.m4 $(srcdir)/config.h.in + cd $(srcdir) && autoconf + +# for chet +reconfig: force + sh $(srcdir)/configure -C + +#newversion: mkversion +# $(RM) .build +# ./mkversion -dir $(srcdir) -dist +# mv -f newversion.h version.h +# $(MAKE) -f $(srcdir)/Makefile $(MFLAGS) srcdir=$(srcdir) + +doc documentation: force + @(cd $(DOCDIR) ; $(MAKE) $(MFLAGS) ) + +info dvi ps: force + @(cd $(DOCDIR) ; $(MAKE) $(MFLAGS) CFLAGS='$(CCFLAGS)' $@ ) + +force: + +# unused +TAGS: $(SOURCES) $(BUILTIN_C_SRC) $(LIBRARY_SOURCE) + etags $(SOURCES) $(BUILTIN_C_SRC) $(LIBRARY_SOURCE) + +tags: $(SOURCES) $(BUILTIN_C_SRC) $(LIBRARY_SOURCE) + ctags -x $(SOURCES) $(BUILTIN_C_SRC) $(LIBRARY_SOURCE) > $@ + +# Targets that actually do things not part of the build + +installdirs: + @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(bindir) + @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(man1dir) + @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(infodir) + @${SHELL} $(SUPPORT_SRC)mkinstalldirs $(DESTDIR)$(docdir) + -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ ) + +install: .made installdirs + $(INSTALL_PROGRAM) $(INSTALLMODE) $(Program) $(DESTDIR)$(bindir)/$(Program) + $(INSTALL_SCRIPT) $(INSTALLMODE2) bashbug $(DESTDIR)$(bindir)/bashbug + $(INSTALL_DATA) $(OTHER_DOCS) $(DESTDIR)$(docdir) + -( cd $(DOCDIR) ; $(MAKE) $(MFLAGS) \ + man1dir=$(man1dir) man1ext=$(man1ext) \ + man3dir=$(man3dir) man3ext=$(man3ext) \ + infodir=$(infodir) htmldir=$(htmldir) DESTDIR=$(DESTDIR) $@ ) + -( cd $(DEFDIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ ) + -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ ) + +install-strip: + $(MAKE) $(MFLAGS) INSTALL_PROGRAM='$(INSTALL_PROGRAM) -s' \ + prefix=${prefix} exec_prefix=${exec_prefix} \ + DESTDIR=$(DESTDIR) install + +uninstall: .made + $(RM) $(DESTDIR)$(bindir)/$(Program) $(DESTDIR)$(bindir)/bashbug + -( cd $(DESTDIR)$(docdir) && ${RM} ${OTHER_INSTALLED_DOCS} ) + -( cd $(DOCDIR) ; $(MAKE) $(MFLAGS) \ + man1dir=$(man1dir) man1ext=$(man1ext) \ + man3dir=$(man3dir) man3ext=$(man3ext) \ + infodir=$(infodir) htmldir=$(htmldir) DESTDIR=$(DESTDIR) $@ ) + -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ ) + +.PHONY: basic-clean clean realclean maintainer-clean distclean mostlyclean maybe-clean + +LIB_SUBDIRS = ${RL_LIBDIR} ${HIST_LIBDIR} ${TERM_LIBDIR} ${GLOB_LIBDIR} \ + ${INTL_LIBDIR} ${TILDE_LIBDIR} ${ALLOC_LIBDIR} ${SH_LIBDIR} + +basic-clean: + $(RM) $(OBJECTS) $(Program) bashbug + $(RM) .build .made version.h + +clean: basic-clean + ( cd $(DOCDIR) && $(MAKE) $(MFLAGS) $@ ) + ( cd builtins && $(MAKE) $(MFLAGS) $@ ) + -( cd $(SDIR) && $(MAKE) $(MFLAGS) $@ ) + -for libdir in ${LIB_SUBDIRS}; do \ + (cd $$libdir && test -f Makefile && $(MAKE) $(MFLAGS) $@) ;\ + done + -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ ) + $(RM) $(CREATED_SUPPORT) + +mostlyclean: basic-clean + ( cd $(DOCDIR) && $(MAKE) $(MFLAGS) $@ ) + ( cd builtins && $(MAKE) $(MFLAGS) $@ ) + -( cd $(SDIR) && $(MAKE) $(MFLAGS) $@ ) + -for libdir in ${LIB_SUBDIRS}; do \ + (cd $$libdir && test -f Makefile && $(MAKE) $(MFLAGS) $@) ;\ + done + -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ ) + +distclean: basic-clean maybe-clean + ( cd $(DOCDIR) && $(MAKE) $(MFLAGS) $@ ) + ( cd builtins && $(MAKE) $(MFLAGS) $@ ) + -( cd $(SDIR) && $(MAKE) $(MFLAGS) $@ ) + -for libdir in ${LIB_SUBDIRS}; do \ + (cd $$libdir && test -f Makefile && $(MAKE) $(MFLAGS) $@) ;\ + done + -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ ) + $(RM) $(CREATED_CONFIGURE) tags TAGS + $(RM) $(CREATED_SUPPORT) Makefile $(CREATED_MAKEFILES) pathnames.h + +maintainer-clean: basic-clean + @echo This command is intended for maintainers to use. + @echo It deletes files that may require special tools to rebuild. + $(RM) y.tab.c y.tab.h parser-built tags TAGS + ( cd $(DOCDIR) && $(MAKE) $(MFLAGS) $@ ) + ( cd builtins && $(MAKE) $(MFLAGS) $@ ) + ( cd $(SDIR) && $(MAKE) $(MFLAGS) $@ ) + -for libdir in ${LIB_SUBDIRS}; do \ + (cd $$libdir && test -f Makefile && $(MAKE) $(MFLAGS) $@) ;\ + done + -( cd $(PO_DIR) ; $(MAKE) $(MFLAGS) DESTDIR=$(DESTDIR) $@ ) + $(RM) $(CREATED_CONFIGURE) $(CREATED_MAKEFILES) + $(RM) $(CREATED_SUPPORT) Makefile pathnames.h + +maybe-clean: + -if test "X$(topdir)" != "X$(BUILD_DIR)" ; then \ + $(RM) parser-built y.tab.c y.tab.h ; \ + fi + +recho$(EXEEXT): $(SUPPORT_SRC)recho.c + @$(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(SUPPORT_SRC)recho.c ${LIBS_FOR_BUILD} + +zecho$(EXEEXT): $(SUPPORT_SRC)zecho.c + @$(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(SUPPORT_SRC)zecho.c ${LIBS_FOR_BUILD} + +printenv$(EXEEXT): $(SUPPORT_SRC)printenv.c + @$(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(SUPPORT_SRC)printenv.c ${LIBS_FOR_BUILD} + +xcase$(EXEEXT): $(SUPPORT_SRC)xcase.c + @$(CC_FOR_BUILD) $(CCFLAGS_FOR_BUILD) ${LDFLAGS_FOR_BUILD} -o $@ $(SUPPORT_SRC)xcase.c ${LIBS_FOR_BUILD} + +test tests check: force $(Program) $(TESTS_SUPPORT) + @-test -d tests || mkdir tests + @cp $(TESTS_SUPPORT) tests + @( cd $(srcdir)/tests && \ + PATH=$(BUILD_DIR)/tests:$$PATH THIS_SH=$(THIS_SH) $(SHELL) ${TESTSCRIPT} ) + +symlinks: + $(SHELL) $(SUPPORT_SRC)fixlinks -s $(srcdir) + +dist: force + @echo Bash distributions are created using $(srcdir)/support/mkdist. + @echo Here is a sample of the necessary commands: + @echo $(Program) $(srcdir)/support/mkdist -m $(srcdir)/MANIFEST -s $(srcdir) -r ${PACKAGE} $(PACKAGE_VERSION) + @echo tar cf $(PACKAGE)-${PACKAGE_VERSION}.tar ${PACKAGE}-$(PACKAGE_VERSION) + @echo gzip $(PACKAGE)-$(PACKAGE_VERSION).tar + +depend: depends + +depends: force + $(Program) $(SUPPORT_SRC)mkdep -c ${CC} -- ${CCFLAGS} ${CSOURCES} + +#### PRIVATE TARGETS #### +hashtest: hashlib.c + $(CC) -DTEST_HASHING $(CCFLAGS) -o $@ $(srcdir)/hashlib.c + +############################ DEPENDENCIES ############################### + +# Files that depend on the definitions in config-top.h, which are not meant +# to be changed +bashhist.o: config-top.h +shell.o: config-top.h +input.o: config-top.h +y.tab.o: config-top.h +jobs.o: config-top.h +nojobs.o: config-top.h +execute_cmd.o: config-top.h +variables.o: config-top.h +builtins/command.o: config-top.h +builtins/common.o: config-top.h +builtins/break.o: config-top.h +builtins/echo.o: config-top.h +builtins/evalstring.o: config-top.h +builtins/exit.o: config-top.h +builtins/kill.o: config-top.h + +# shell basics +copy_cmd.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +copy_cmd.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +copy_cmd.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +copy_cmd.o: make_cmd.h subst.h sig.h pathnames.h externs.h +dispose_cmd.o: bashansi.h ${BASHINCDIR}/ansi_stdlib.h +dispose_cmd.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h +dispose_cmd.o: error.h general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +dispose_cmd.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +dispose_cmd.o: make_cmd.h subst.h sig.h pathnames.h externs.h +dispose_cmd.o: ${BASHINCDIR}/ocache.h +error.o: config.h bashtypes.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h flags.h ${BASHINCDIR}/stdc.h error.h +error.o: command.h general.h xmalloc.h externs.h input.h bashhist.h +error.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +error.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +error.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +error.o: make_cmd.h subst.h sig.h pathnames.h externs.h +error.o: input.h execute_cmd.h +eval.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h trap.h flags.h ${DEFSRC}/common.h +eval.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +eval.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +eval.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +eval.o: make_cmd.h subst.h sig.h pathnames.h externs.h +eval.o: input.h execute_cmd.h +execute_cmd.o: config.h bashtypes.h ${BASHINCDIR}/filecntl.h ${BASHINCDIR}/posixstat.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +execute_cmd.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +execute_cmd.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +execute_cmd.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +execute_cmd.o: make_cmd.h subst.h sig.h pathnames.h externs.h +execute_cmd.o: ${BASHINCDIR}/memalloc.h ${GRAM_H} flags.h builtins.h jobs.h quit.h siglist.h +execute_cmd.o: execute_cmd.h findcmd.h redir.h trap.h test.h pathexp.h +execute_cmd.o: $(DEFSRC)/common.h ${DEFDIR}/builtext.h ${GLOB_LIBSRC}/strmatch.h +execute_cmd.o: ${BASHINCDIR}/posixtime.h ${BASHINCDIR}/chartypes.h +expr.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +expr.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +expr.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +expr.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +expr.o: make_cmd.h subst.h sig.h pathnames.h externs.h +expr.o: ${BASHINCDIR}/chartypes.h +findcmd.o: config.h bashtypes.h ${BASHINCDIR}/filecntl.h ${BASHINCDIR}/posixstat.h bashansi.h +findcmd.o: ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/memalloc.h shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h +findcmd.o: ${BASHINCDIR}/stdc.h error.h general.h xmalloc.h variables.h arrayfunc.h conftypes.h quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h +findcmd.o: dispose_cmd.h make_cmd.h subst.h sig.h pathnames.h externs.h +findcmd.o: flags.h hashlib.h pathexp.h hashcmd.h +findcmd.o: ${BASHINCDIR}/chartypes.h +flags.o: config.h flags.h +flags.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +flags.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +flags.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +flags.o: make_cmd.h subst.h sig.h pathnames.h externs.h bashhist.h +general.o: config.h bashtypes.h ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +general.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +general.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +general.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +general.o: make_cmd.h subst.h sig.h pathnames.h externs.h +general.o: ${BASHINCDIR}/maxpath.h ${BASHINCDIR}/posixtime.h +general.o: ${BASHINCDIR}/chartypes.h +hashcmd.o: config.h ${BASHINCDIR}/posixstat.h bashtypes.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +hashcmd.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +hashcmd.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashcmd.h +hashcmd.o: execute_cmd.h findcmd.h ${BASHINCDIR}/stdc.h pathnames.h hashlib.h +hashlib.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +hashlib.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +hashlib.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +hashlib.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +hashlib.o: make_cmd.h subst.h sig.h pathnames.h externs.h +input.o: config.h bashtypes.h ${BASHINCDIR}/filecntl.h ${BASHINCDIR}/posixstat.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +input.o: command.h ${BASHINCDIR}/stdc.h general.h xmalloc.h input.h error.h externs.h +input.o: quit.h +list.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +list.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +list.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +list.o: make_cmd.h subst.h sig.h pathnames.h externs.h +locale.o: config.h bashtypes.h bashintl.h ${LIBINTL_H} bashansi.h ${BASHINCDIR}/ansi_stdlib.h +locale.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +locale.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +locale.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +locale.o: make_cmd.h subst.h sig.h pathnames.h externs.h +locale.o: ${BASHINCDIR}/chartypes.h +mailcheck.o: config.h bashtypes.h ${BASHINCDIR}/posixstat.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +mailcheck.o: ${BASHINCDIR}/posixtime.h +mailcheck.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +mailcheck.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +mailcheck.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +mailcheck.o: make_cmd.h subst.h sig.h pathnames.h externs.h +mailcheck.o: execute_cmd.h mailcheck.h +make_cmd.o: config.h bashtypes.h ${BASHINCDIR}/filecntl.h bashansi.h +make_cmd.o: command.h ${BASHINCDIR}/stdc.h general.h xmalloc.h error.h flags.h make_cmd.h +make_cmd.o: variables.h arrayfunc.h conftypes.h array.h hashlib.h subst.h input.h externs.h +make_cmd.o: jobs.h quit.h siglist.h syntax.h dispose_cmd.h parser.h +make_cmd.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h ${BASHINCDIR}/ocache.h +y.tab.o: config.h bashtypes.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/memalloc.h +y.tab.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +y.tab.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +y.tab.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +y.tab.o: make_cmd.h subst.h sig.h pathnames.h externs.h test.h +y.tab.o: trap.h flags.h parser.h input.h mailcheck.h $(DEFSRC)/common.h +y.tab.o: $(DEFDIR)/builtext.h bashline.h bashhist.h jobs.h siglist.h alias.h +pathexp.o: config.h bashtypes.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +pathexp.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +pathexp.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +pathexp.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +pathexp.o: make_cmd.h subst.h sig.h pathnames.h externs.h +pathexp.o: pathexp.h flags.h +pathexp.o: $(GLOB_LIBSRC)/glob.h $(GLOB_LIBSRC)/strmatch.h +pathexp.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h +print_cmd.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +print_cmd.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +print_cmd.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +print_cmd.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +print_cmd.o: make_cmd.h subst.h sig.h pathnames.h externs.h +print_cmd.o: ${GRAM_H} $(DEFSRC)/common.h +redir.o: config.h bashtypes.h ${BASHINCDIR}/posixstat.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/filecntl.h +redir.o: ${BASHINCDIR}/memalloc.h shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +redir.o: general.h xmalloc.h variables.h arrayfunc.h conftypes.h array.h hashlib.h quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h +redir.o: dispose_cmd.h make_cmd.h subst.h sig.h pathnames.h externs.h +redir.o: flags.h execute_cmd.h redir.h input.h +shell.o: config.h bashtypes.h ${BASHINCDIR}/posixstat.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/filecntl.h +shell.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +shell.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +shell.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +shell.o: make_cmd.h subst.h sig.h pathnames.h externs.h +shell.o: flags.h trap.h mailcheck.h builtins.h $(DEFSRC)/common.h +shell.o: jobs.h siglist.h input.h execute_cmd.h findcmd.h bashhist.h bashline.h +shell.o: ${GLOB_LIBSRC}/strmatch.h ${BASHINCDIR}/posixtime.h +sig.o: config.h bashtypes.h +sig.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +sig.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +sig.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +sig.o: make_cmd.h subst.h sig.h pathnames.h externs.h +sig.o: jobs.h siglist.h trap.h $(DEFSRC)/common.h bashline.h bashhist.h +sig.o: ${DEFDIR}/builtext.h +siglist.o: config.h bashtypes.h siglist.h trap.h +stringlib.o: bashtypes.h ${BASHINCDIR}/chartypes.h +stringlib.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +stringlib.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +stringlib.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +stringlib.o: make_cmd.h subst.h sig.h pathnames.h externs.h +stringlib.o: ${GLOB_LIBSRC}/glob.h ${GLOB_LIBSRC}/strmatch.h +subst.o: config.h bashtypes.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/posixstat.h +subst.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +subst.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +subst.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +subst.o: make_cmd.h subst.h sig.h pathnames.h externs.h parser.h +subst.o: flags.h jobs.h siglist.h execute_cmd.h ${BASHINCDIR}/filecntl.h trap.h pathexp.h +subst.o: mailcheck.h input.h $(DEFSRC)/getopt.h $(DEFSRC)/common.h +subst.o: bashline.h bashhist.h ${GLOB_LIBSRC}/strmatch.h +subst.o: ${BASHINCDIR}/chartypes.h +subst.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h +subst.o: ${DEFDIR}/builtext.h +test.o: bashtypes.h ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h +test.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +test.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +test.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +test.o: make_cmd.h subst.h sig.h pathnames.h externs.h test.h +test.o: ${DEFSRC}/common.h +trap.o: config.h bashtypes.h trap.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +trap.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +trap.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +trap.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +trap.o: make_cmd.h subst.h sig.h pathnames.h externs.h +trap.o: signames.h $(DEFSRC)/common.h +trap.o: ${DEFDIR}/builtext.h jobs.h +unwind_prot.o: config.h bashtypes.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h command.h ${BASHINCDIR}/stdc.h +unwind_prot.o: general.h xmalloc.h unwind_prot.h quit.h sig.h +variables.o: config.h bashtypes.h ${BASHINCDIR}/posixstat.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +variables.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +variables.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +variables.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +variables.o: make_cmd.h subst.h sig.h pathnames.h externs.h +variables.o: flags.h execute_cmd.h mailcheck.h input.h $(DEFSRC)/common.h +variables.o: findcmd.h bashhist.h hashcmd.h pathexp.h +variables.o: pcomplete.h ${BASHINCDIR}/chartypes.h +variables.o: ${BASHINCDIR}/posixtime.h assoc.h +variables.o: version.h +version.o: conftypes.h patchlevel.h version.h +xmalloc.o: config.h bashtypes.h ${BASHINCDIR}/ansi_stdlib.h error.h + +# job control + +jobs.o: config.h bashtypes.h trap.h ${BASHINCDIR}/filecntl.h input.h ${BASHINCDIR}/shtty.h +jobs.o: bashansi.h ${BASHINCDIR}/ansi_stdlib.h +jobs.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +jobs.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +jobs.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +jobs.o: execute_cmd.h make_cmd.h subst.h sig.h pathnames.h externs.h +jobs.o: jobs.h flags.h $(DEFSRC)/common.h $(DEFDIR)/builtext.h +jobs.o: ${BASHINCDIR}/posixwait.h ${BASHINCDIR}/unionwait.h +jobs.o: ${BASHINCDIR}/posixtime.h +nojobs.o: config.h bashtypes.h ${BASHINCDIR}/filecntl.h bashjmp.h ${BASHINCDIR}/posixjmp.h +nojobs.o: command.h ${BASHINCDIR}/stdc.h general.h xmalloc.h jobs.h quit.h siglist.h externs.h +nojobs.o: sig.h error.h ${BASHINCDIR}/shtty.h input.h +nojobs.o: $(DEFDIR)/builtext.h + +# shell features that may be compiled in + +array.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +array.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +array.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +array.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +array.o: make_cmd.h subst.h sig.h pathnames.h externs.h +array.o: $(DEFSRC)/common.h +arrayfunc.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +arrayfunc.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +arrayfunc.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +arrayfunc.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +arrayfunc.o: make_cmd.h subst.h sig.h pathnames.h externs.h pathexp.h +arrayfunc.o: $(DEFSRC)/common.h +arrayfunc.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h +assoc.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +assoc.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h +assoc.o: command.h ${BASHINCDIR}/stdc.h error.h +assoc.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h +assoc.o: assoc.h hashlib.h +assoc.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +assoc.o: make_cmd.h subst.h sig.h pathnames.h externs.h +assoc.o: $(DEFSRC)/common.h +braces.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +braces.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +braces.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +braces.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +braces.o: make_cmd.h subst.h sig.h pathnames.h externs.h +braces.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h +alias.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h command.h ${BASHINCDIR}/stdc.h +alias.o: general.h xmalloc.h bashtypes.h externs.h alias.h +alias.o: pcomplete.h +alias.o: ${BASHINCDIR}/chartypes.h + +pcomplib.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h bashtypes.h +pcomplib.o: ${BASHINCDIR}/stdc.h hashlib.h pcomplete.h shell.h syntax.h +pcomplib.o: bashjmp.h command.h general.h xmalloc.h error.h variables.h arrayfunc.h conftypes.h quit.h +pcomplib.o: unwind_prot.h dispose_cmd.h make_cmd.h subst.h sig.h pathnames.h +pcomplib.o: externs.h ${BASHINCDIR}/maxpath.h + +pcomplete.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h bashtypes.h +pcomplete.o: ${BASHINCDIR}/stdc.h hashlib.h pcomplete.h shell.h syntax.h +pcomplete.o: bashjmp.h command.h general.h xmalloc.h error.h variables.h arrayfunc.h conftypes.h quit.h +pcomplete.o: unwind_prot.h dispose_cmd.h make_cmd.h subst.h sig.h pathnames.h +pcomplete.o: externs.h ${BASHINCDIR}/maxpath.h execute_cmd.h +pcomplete.o: ${DEFDIR}/builtext.h + +# library support files + +bashhist.o: config.h bashtypes.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h ${BASHINCDIR}/posixstat.h +bashhist.o: ${BASHINCDIR}/filecntl.h +bashhist.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +bashhist.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +bashhist.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +bashhist.o: make_cmd.h subst.h sig.h pathnames.h externs.h +bashhist.o: flags.h input.h parser.h pathexp.h $(DEFSRC)/common.h bashline.h +bashhist.o: $(GLOB_LIBSRC)/strmatch.h +bashline.o: config.h bashtypes.h ${BASHINCDIR}/posixstat.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +bashline.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h command.h ${BASHINCDIR}/stdc.h error.h +bashline.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h array.h hashlib.h +bashline.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +bashline.o: make_cmd.h subst.h sig.h pathnames.h externs.h +bashline.o: builtins.h bashhist.h bashline.h execute_cmd.h findcmd.h pathexp.h +bashline.o: $(DEFSRC)/common.h $(GLOB_LIBSRC)/glob.h alias.h +bashline.o: pcomplete.h ${BASHINCDIR}/chartypes.h input.h +bashline.o: ${BASHINCDIR}/shmbutil.h ${BASHINCDIR}/shmbchar.h +bracecomp.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +bracecomp.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h +bracecomp.o: command.h ${BASHINCDIR}/stdc.h error.h +bracecomp.o: general.h xmalloc.h bashtypes.h variables.h arrayfunc.h conftypes.h +bracecomp.o: array.h hashlib.h alias.h builtins.h +bracecomp.o: quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +bracecomp.o: make_cmd.h subst.h sig.h pathnames.h externs.h + +# library dependencies + +bashline.o: $(RL_LIBSRC)/rlconf.h +bashline.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/rlstdc.h +bashline.o: $(RL_LIBSRC)/chardefs.h $(RL_LIBSRC)/readline.h +bracecomp.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/chardefs.h +bracecomp.o: $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/rlstdc.h +y.tab.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/chardefs.h +y.tab.o: $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/rlstdc.h +subst.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/chardefs.h +subst.o: $(RL_LIBSRC)/readline.h $(RL_LIBSRC)/rlstdc.h + +shell.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h +subst.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h +bashline.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h +bashhist.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h +y.tab.o: $(HIST_LIBSRC)/history.h $(HIST_LIBSRC)/rlstdc.h + +execute_cmd.o: $(TILDE_LIBSRC)/tilde.h +general.o: $(TILDE_LIBSRC)/tilde.h +mailcheck.o: $(TILDE_LIBSRC)/tilde.h +shell.o: $(TILDE_LIBSRC)/tilde.h +subst.o: $(TILDE_LIBSRC)/tilde.h +variables.o: $(TILDE_LIBSRC)/tilde.h + +# libintl dependencies +arrayfunc.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +bashhist.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +bashline.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +braces.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +error.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +eval.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +execute_cmd.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +expr.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +general.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +input.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +jobs.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +mailcheck.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +make_cmd.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +nojobs.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +y.tab.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +pcomplete.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +pcomplib.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +print_cmd.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +redir.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +shell.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +sig.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +siglist.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +subst.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +test.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +trap.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +variables.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +version.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +xmalloc.o: bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h + +signames.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h + +# XXX - dependencies checked through here + +# builtin c sources +builtins/bashgetopt.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +builtins/bashgetopt.o: shell.h syntax.h config.h bashjmp.h command.h general.h xmalloc.h error.h +builtins/bashgetopt.o: variables.h arrayfunc.h conftypes.h quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +builtins/bashgetopt.o: make_cmd.h subst.h sig.h pathnames.h externs.h +builtins/bashgetopt.o: $(DEFSRC)/common.h +builtins/bashgetopt.o: ${BASHINCDIR}/chartypes.h +builtins/common.o: bashtypes.h ${BASHINCDIR}/posixstat.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +builtins/common.o: shell.h syntax.h config.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h command.h +builtins/common.o: ${BASHINCDIR}/memalloc.h variables.h arrayfunc.h conftypes.h input.h siglist.h +builtins/common.o: quit.h unwind_prot.h ${BASHINCDIR}/maxpath.h jobs.h builtins.h +builtins/common.o: dispose_cmd.h make_cmd.h subst.h externs.h bashhist.h +builtins/common.o: execute_cmd.h ${BASHINCDIR}/stdc.h general.h xmalloc.h error.h pathnames.h +builtins/common.o: ${DEFDIR}/builtext.h +builtins/common.o: ${BASHINCDIR}/chartypes.h +builtins/evalfile.o: bashtypes.h ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +builtins/evalfile.o: shell.h syntax.h config.h bashjmp.h command.h general.h xmalloc.h error.h +builtins/evalfile.o: variables.h arrayfunc.h conftypes.h quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +builtins/evalfile.o: make_cmd.h subst.h sig.h pathnames.h externs.h +builtins/evalfile.o: jobs.h builtins.h flags.h input.h execute_cmd.h +builtins/evalfile.o: bashhist.h $(DEFSRC)/common.h +builtins/evalstring.o: config.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +builtins/evalstring.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h command.h siglist.h +builtins/evalstring.o: ${BASHINCDIR}/memalloc.h variables.h arrayfunc.h conftypes.h input.h +builtins/evalstring.o: quit.h unwind_prot.h ${BASHINCDIR}/maxpath.h jobs.h builtins.h +builtins/evalstring.o: dispose_cmd.h make_cmd.h subst.h externs.h +builtins/evalstring.o: jobs.h builtins.h flags.h input.h execute_cmd.h +builtins/evalstring.o: bashhist.h $(DEFSRC)/common.h pathnames.h +builtins/getopt.o: config.h ${BASHINCDIR}/memalloc.h +builtins/getopt.o: shell.h syntax.h bashjmp.h command.h general.h xmalloc.h error.h +builtins/getopt.o: variables.h arrayfunc.h conftypes.h quit.h ${BASHINCDIR}/maxpath.h unwind_prot.h dispose_cmd.h +builtins/getopt.o: make_cmd.h subst.h sig.h pathnames.h externs.h +builtins/getopt.o: $(DEFSRC)/getopt.h +builtins/mkbuiltins.o: config.h bashtypes.h ${BASHINCDIR}/posixstat.h ${BASHINCDIR}/filecntl.h +builtins/mkbuiltins.o: bashansi.h ${BASHINCDIR}/ansi_stdlib.h + +# builtin def files +builtins/alias.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/alias.o: quit.h $(DEFSRC)/common.h pathnames.h +builtins/alias.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h command.h ${BASHINCDIR}/stdc.h unwind_prot.h +builtins/alias.o: dispose_cmd.h make_cmd.h subst.h externs.h variables.h arrayfunc.h conftypes.h +builtins/bind.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/bind.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/bind.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/bind.o: $(DEFSRC)/bashgetopt.h pathnames.h +builtins/break.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/break.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/break.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/break.o: pathnames.h +builtins/builtin.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/builtin.o: quit.h $(DEFSRC)/common.h $(DEFSRC)/bashgetopt.h +builtins/builtin.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/builtin.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/builtin.o: pathnames.h +builtins/caller.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/caller.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/caller.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/caller.o: $(DEFSRC)/common.h quit.h +builtins/caller.o: ${BASHINCDIR}/chartypes.h bashtypes.h +builtins/caller.o: ${DEFDIR}/builtext.h pathnames.h +builtins/cd.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/cd.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/cd.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/cd.o: $(DEFSRC)/common.h quit.h pathnames.h +builtins/command.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/command.o: quit.h $(DEFSRC)/bashgetopt.h +builtins/command.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/command.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h pathnames.h +builtins/declare.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/declare.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/declare.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/declare.o: $(DEFSRC)/bashgetopt.h pathnames.h +builtins/echo.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/echo.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/echo.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/echo.o: pathnames.h +builtins/enable.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/enable.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/enable.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/enable.o: pcomplete.h pathnames.h +builtins/eval.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/eval.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/eval.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/eval.o: pathnames.h +builtins/exec.o: bashtypes.h pathnames.h +builtins/exec.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/exec.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/exec.o: dispose_cmd.h make_cmd.h subst.h externs.h execute_cmd.h +builtins/exec.o: findcmd.h flags.h quit.h $(DEFSRC)/common.h ${BASHINCDIR}/stdc.h +builtins/exec.o: pathnames.h +builtins/exit.o: bashtypes.h +builtins/exit.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/exit.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/exit.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/exit.o: pathnames.h +builtins/fc.o: bashtypes.h ${BASHINCDIR}/posixstat.h +builtins/fc.o: bashansi.h ${BASHINCDIR}/ansi_stdlib.h builtins.h command.h ${BASHINCDIR}/stdc.h +builtins/fc.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/fc.o: flags.h unwind_prot.h variables.h arrayfunc.h conftypes.h shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h +builtins/fc.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h quit.h +builtins/fc.o: $(DEFSRC)/bashgetopt.h bashhist.h pathnames.h +builtins/fc.o: ${BASHINCDIR}/chartypes.h +builtins/fg_bg.o: bashtypes.h $(DEFSRC)/bashgetopt.h +builtins/fg_bg.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/fg_bg.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/fg_bg.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/fg_bg.o: pathnames.h +builtins/getopts.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/getopts.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/getopts.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/getopts.o: pathnames.h +builtins/hash.o: bashtypes.h +builtins/hash.o: builtins.h command.h findcmd.h ${BASHINCDIR}/stdc.h $(DEFSRC)/common.h +builtins/hash.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/hash.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/hash.o: pathnames.h +builtins/help.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/help.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/help.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/help.o: $(GLOB_LIBSRC)/glob.h pathnames.h +builtins/history.o: bashtypes.h pathnames.h +builtins/history.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/history.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/history.o: ${BASHINCDIR}/filecntl.h shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h +builtins/history.o: bashhist.h variables.h arrayfunc.h conftypes.h +builtins/inlib.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/inlib.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h quit.h +builtins/inlib.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/inlib.o: pathnames.h +builtins/jobs.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/jobs.o: quit.h $(DEFSRC)/bashgetopt.h +builtins/jobs.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/jobs.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/jobs.o: pathnames.h +builtins/kill.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/kill.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/kill.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h trap.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/kill.o: pathnames.h +builtins/let.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/let.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/let.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/let.o: pathnames.h +builtins/printf.o: config.h ${BASHINCDIR}/memalloc.h bashjmp.h command.h error.h +builtins/printf.o: general.h xmalloc.h quit.h dispose_cmd.h make_cmd.h subst.h +builtins/printf.o: externs.h sig.h pathnames.h shell.h syntax.h unwind_prot.h +builtins/printf.o: variables.h arrayfunc.h conftypes.h ${BASHINCDIR}/stdc.h $(DEFSRC)/bashgetopt.h +builtins/printf.o: ${BASHINCDIR}/chartypes.h +builtins/pushd.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/pushd.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/pushd.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/pushd.o: $(DEFSRC)/common.h pathnames.h +builtins/read.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/read.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/read.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/read.o: pathnames.h +builtins/return.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/return.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/return.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/return.o: pathnames.h +builtins/set.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/set.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/set.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h flags.h +builtins/set.o: pathnames.h +builtins/setattr.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/setattr.o: quit.h $(DEFSRC)/common.h $(DEFSRC)/bashgetopt.h +builtins/setattr.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/setattr.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/setattr.o: pathnames.h +builtins/shift.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/shift.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/shift.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/shift.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/shift.o: pathnames.h +builtins/shopt.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h +builtins/shopt.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h +builtins/shopt.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h unwind_prot.h variables.h arrayfunc.h conftypes.h ${BASHINCDIR}/maxpath.h +builtins/shopt.o: $(DEFSRC)/common.h $(DEFSRC)/bashgetopt.h pathnames.h +builtins/shopt.o: bashhist.h bashline.h +builtins/source.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/source.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/source.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/source.o: findcmd.h $(DEFSRC)/bashgetopt.h flags.h trap.h +builtins/source.o: pathnames.h +builtins/suspend.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/suspend.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/suspend.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/suspend.o: pathnames.h +builtins/test.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/test.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/test.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/test.o: test.h pathnames.h +builtins/times.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/times.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/times.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/times.o: pathnames.h +builtins/trap.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/trap.o: quit.h $(DEFSRC)/common.h +builtins/trap.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/trap.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/trap.o: pathnames.h +builtins/type.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/type.o: quit.h $(DEFSRC)/common.h findcmd.h +builtins/type.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/type.o: dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/type.o: pathnames.h +builtins/ulimit.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/ulimit.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/ulimit.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/ulimit.o: pathnames.h +builtins/umask.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/umask.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/umask.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/umask.o: ${BASHINCDIR}/chartypes.h pathnames.h +builtins/wait.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/wait.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/wait.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/wait.o: ${BASHINCDIR}/chartypes.h pathnames.h + +builtins/complete.o: config.h shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h +builtins/complete.o: unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/complete.o: bashtypes.h bashansi.h ${BASHINCDIR}/ansi_stdlib.h +builtins/complete.o: builtins.h pathnames.h +builtins/complete.o: pcomplete.h +builtins/complete.o: ${DEFSRC}/common.h ${DEFSRC}/bashgetopt.h +builtins/mapfile.o: command.h config.h ${BASHINCDIR}/memalloc.h error.h general.h xmalloc.h ${BASHINCDIR}/maxpath.h +builtins/mapfile.o: quit.h dispose_cmd.h make_cmd.h subst.h externs.h ${BASHINCDIR}/stdc.h +builtins/mapfile.o: shell.h syntax.h bashjmp.h ${BASHINCDIR}/posixjmp.h sig.h unwind_prot.h variables.h arrayfunc.h conftypes.h +builtins/mapfile.o: pathnames.h + +# libintl dependencies +builtins/bind.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/break.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/caller.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/cd.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/common.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/complete.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/declare.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/enable.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/evalfile.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/exec.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/exit.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/fc.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/fg_bg.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/getopt.c: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/hash.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/help.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/history.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/inlib.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/jobs.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/kill.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/let.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/mapfile.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/mkbuiltins.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/printf.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/pushd.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/read.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/return.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/set.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/setattr.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/shift.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/shopt.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/source.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/suspend.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/type.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/ulimit.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h +builtins/umask.o: ${topdir}/bashintl.h ${LIBINTL_H} $(BASHINCDIR)/gettext.h + +# builtin library dependencies +builtins/bind.o: $(RL_LIBSRC)/chardefs.h $(RL_LIBSRC)/readline.h +builtins/bind.o: $(RL_LIBSRC)/keymaps.h $(RL_LIBSRC)/rlstdc.h + +builtins/bind.o: $(HIST_LIBSRC)/history.h $(RL_LIBSRC)/rlstdc.h +builtins/fc.o: $(HIST_LIBSRC)/history.h $(RL_LIBSRC)/rlstdc.h +builtins/history.o: $(HIST_LIBSRC)/history.h $(RL_LIBSRC)/rlstdc.h + +builtins/common.o: $(TILDE_LIBSRC)/tilde.h +builtins/cd.o: $(TILDE_LIBSRC)/tilde.h + +builtins/alias.o: $(DEFSRC)/alias.def +builtins/bind.o: $(DEFSRC)/bind.def +builtins/break.o: $(DEFSRC)/break.def +builtins/builtin.o: $(DEFSRC)/builtin.def +builtins/caller.o: $(DEFSRC)/caller.def +builtins/cd.o: $(DEFSRC)/cd.def +builtins/colon.o: $(DEFSRC)/colon.def +builtins/command.o: $(DEFSRC)/command.def +builtins/complete.o: $(DEFSRC)/complete.def +builtins/declare.o: $(DEFSRC)/declare.def +builtins/echo.o: $(DEFSRC)/echo.def +builtins/enable.o: $(DEFSRC)/enable.def +builtins/eval.o: $(DEFSRC)/eval.def +builtins/exec.o: $(DEFSRC)/exec.def +builtins/exit.o: $(DEFSRC)/exit.def +builtins/fc.o: $(DEFSRC)/fc.def +builtins/fg_bg.o: $(DEFSRC)/fg_bg.def +builtins/getopts.o: $(DEFSRC)/getopts.def +builtins/hash.o: $(DEFSRC)/hash.def +builtins/help.o: $(DEFSRC)/help.def +builtins/history.o: $(DEFSRC)/history.def +builtins/inlib.o: $(DEFSRC)/inlib.def +builtins/jobs.o: $(DEFSRC)/jobs.def +builtins/kill.o: $(DEFSRC)/kill.def +builtins/let.o: $(DEFSRC)/let.def +builtins/mapfile.o: $(DEFSRC)/mapfile.def +builtins/pushd.o: $(DEFSRC)/pushd.def +builtins/read.o: $(DEFSRC)/read.def +builtins/reserved.o: $(DEFSRC)/reserved.def +builtins/return.o: $(DEFSRC)/return.def +builtins/set.o: $(DEFSRC)/set.def +builtins/setattr.o: $(DEFSRC)/setattr.def +builtins/shift.o: $(DEFSRC)/shift.def +builtins/shopt.o: $(DEFSRC)/shopt.def +builtins/source.o: $(DEFSRC)/source.def +builtins/suspend.o: $(DEFSRC)/suspend.def +builtins/test.o: $(DEFSRC)/test.def +builtins/times.o: $(DEFSRC)/times.def +builtins/trap.o: $(DEFSRC)/trap.def +builtins/type.o: $(DEFSRC)/type.def +builtins/ulimit.o: $(DEFSRC)/ulimit.def +builtins/umask.o: $(DEFSRC)/umask.def +builtins/wait.o: $(DEFSRC)/wait.def diff --git a/builtins/gen-helpfiles.c b/builtins/gen-helpfiles.c index b3144974b..fac34edfd 100644 --- a/builtins/gen-helpfiles.c +++ b/builtins/gen-helpfiles.c @@ -59,6 +59,14 @@ #include "../builtins.h" #include "tmpbuiltins.h" +#if defined (USING_BASH_MALLOC) +#undef xmalloc +#undef xrealloc +#undef xfree + +#undef free /* defined in xmalloc.h */ +#endif + #ifndef errno extern int errno; #endif @@ -90,7 +98,7 @@ char *helpfile_directory; /* Forward declarations. */ -int write_helpfiles (); +int write_helpfiles __P((struct builtin *)); /* For each file mentioned on the command line, process it and write the information to STRUCTFILE and EXTERNFILE, while diff --git a/builtins/gen-helpfiles.c~ b/builtins/gen-helpfiles.c~ new file mode 100644 index 000000000..dec394276 --- /dev/null +++ b/builtins/gen-helpfiles.c~ @@ -0,0 +1,192 @@ +/* gen-helpfiles - create files containing builtin help text */ + +/* Copyright (C) 2012 Free Software Foundation, Inc. + + This file is part of GNU Bash, the Bourne Again SHell. + + Bash is free software: you can redistribute it and/or modify + it under the terms of the GNU General Public License as published by + the Free Software Foundation, either version 3 of the License, or + (at your option) any later version. + + Bash is distributed in the hope that it will be useful, + but WITHOUT ANY WARRANTY; without even the implied warranty of + MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + GNU General Public License for more details. + + You should have received a copy of the GNU General Public License + along with Bash. If not, see . +*/ + +/* This links with a specially-generated version of builtins.c and takes + the long_doc members of each struct builtin element and writes those to + the file named by the `handle' member of the struct builtin element. */ + +#if !defined (CROSS_COMPILING) +# include +#else /* CROSS_COMPILING */ +/* A conservative set of defines based on POSIX/SUS3/XPG6 */ +# define HAVE_UNISTD_H +# define HAVE_STRING_H +# define HAVE_STDLIB_H + +# define HAVE_RENAME +#endif /* CROSS_COMPILING */ + +#if defined (HAVE_UNISTD_H) +# ifdef _MINIX +# include +# endif +# include +#endif + +#ifndef _MINIX +# include "../bashtypes.h" +# if defined (HAVE_SYS_FILE_H) +# include +# endif +#endif + +#include "posixstat.h" +#include "filecntl.h" + +#include "../bashansi.h" +#include +#include + +#include "stdc.h" + +#include "../builtins.h" +#include "tmpbuiltins.h" + +#undef xmalloc +#undef xfree + +#ifndef errno +extern int errno; +#endif + +#if !defined (__STDC__) && !defined (strcpy) +extern char *strcpy (); +#endif /* !__STDC__ && !strcpy */ + +#define whitespace(c) (((c) == ' ') || ((c) == '\t')) + +/* Flag values that builtins can have. */ +#define BUILTIN_FLAG_SPECIAL 0x01 +#define BUILTIN_FLAG_ASSIGNMENT 0x02 +#define BUILTIN_FLAG_POSIX_BUILTIN 0x04 + +#define BASE_INDENT 4 + +/* Non-zero means to produce separate help files for each builtin, named by + the builtin name, in `./helpfiles'. */ +int separate_helpfiles = 0; + +/* Non-zero means to create single C strings for each `longdoc', with + embedded newlines, for ease of translation. */ +int single_longdoc_strings = 1; + +/* The name of a directory into which the separate external help files will + eventually be installed. */ +char *helpfile_directory; + +/* Forward declarations. */ + +int write_helpfiles __P((struct builtin *)); + +/* For each file mentioned on the command line, process it and + write the information to STRUCTFILE and EXTERNFILE, while + creating the production file if neccessary. */ +int +main (argc, argv) + int argc; + char **argv; +{ + int arg_index = 1; + + while (arg_index < argc && argv[arg_index][0] == '-') + { + char *arg = argv[arg_index++]; + + if (strcmp (arg, "-noproduction") == 0) + ; + else if (strcmp (arg, "-H") == 0) + helpfile_directory = argv[arg_index++]; + else if (strcmp (arg, "-S") == 0) + single_longdoc_strings = 0; + else + { + fprintf (stderr, "%s: Unknown flag %s.\n", argv[0], arg); + exit (2); + } + } + + write_helpfiles(shell_builtins); + + exit (0); +} + +/* Write DOCUMENTATION to STREAM, perhaps surrounding it with double-quotes + and quoting special characters in the string. Handle special things for + internationalization (gettext) and the single-string vs. multiple-strings + issues. */ +void +write_documentation (stream, documentation, indentation) + FILE *stream; + char *documentation; + int indentation; +{ + if (stream == 0) + return; + + if (documentation) + fprintf (stream, "%*s%s\n", indentation, " ", documentation); +} + +int +write_helpfiles (builtins) + struct builtin *builtins; +{ + char *helpfile, *bname, *fname; + FILE *helpfp; + int i, hdlen; + struct builtin b; + + i = mkdir ("helpfiles", 0777); + if (i < 0 && errno != EEXIST) + { + fprintf (stderr, "write_helpfiles: helpfiles: cannot create directory\n"); + return -1; + } + + hdlen = strlen ("helpfiles/"); + for (i = 0; i < num_shell_builtins; i++) + { + b = builtins[i]; + + fname = (char *)b.handle; + helpfile = (char *)malloc (hdlen + strlen (fname) + 1); + if (helpfile == 0) + { + fprintf (stderr, "gen-helpfiles: cannot allocate memory\n"); + exit (1); + } + sprintf (helpfile, "helpfiles/%s", fname); + + helpfp = fopen (helpfile, "w"); + if (helpfp == 0) + { + fprintf (stderr, "write_helpfiles: cannot open %s\n", helpfile); + free (helpfile); + continue; + } + + write_documentation (helpfp, b.long_doc[0], 4); + + fflush (helpfp); + fclose (helpfp); + free (helpfile); + } + return 0; +} diff --git a/builtins/jobs.def b/builtins/jobs.def index b14e91f24..47da58e49 100644 --- a/builtins/jobs.def +++ b/builtins/jobs.def @@ -31,7 +31,7 @@ Without options, the status of all active jobs is displayed. Options: -l lists process IDs in addition to the normal information - -n list only processes that have changed status since the last + -n lists only processes that have changed status since the last notification -p lists process IDs only -r restrict output to running jobs diff --git a/builtins/jobs.def~ b/builtins/jobs.def~ new file mode 100644 index 000000000..b14e91f24 --- /dev/null +++ b/builtins/jobs.def~ @@ -0,0 +1,298 @@ +This file is jobs.def, from which is created jobs.c. +It implements the builtins "jobs" and "disown" in Bash. + +Copyright (C) 1987-2009 Free Software Foundation, Inc. + +This file is part of GNU Bash, the Bourne Again SHell. + +Bash is free software: you can redistribute it and/or modify +it under the terms of the GNU General Public License as published by +the Free Software Foundation, either version 3 of the License, or +(at your option) any later version. + +Bash is distributed in the hope that it will be useful, +but WITHOUT ANY WARRANTY; without even the implied warranty of +MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +GNU General Public License for more details. + +You should have received a copy of the GNU General Public License +along with Bash. If not, see . + +$PRODUCES jobs.c + +$BUILTIN jobs +$FUNCTION jobs_builtin +$DEPENDS_ON JOB_CONTROL +$SHORT_DOC jobs [-lnprs] [jobspec ...] or jobs -x command [args] +Display status of jobs. + +Lists the active jobs. JOBSPEC restricts output to that job. +Without options, the status of all active jobs is displayed. + +Options: + -l lists process IDs in addition to the normal information + -n list only processes that have changed status since the last + notification + -p lists process IDs only + -r restrict output to running jobs + -s restrict output to stopped jobs + +If -x is supplied, COMMAND is run after all job specifications that +appear in ARGS have been replaced with the process ID of that job's +process group leader. + +Exit Status: +Returns success unless an invalid option is given or an error occurs. +If -x is used, returns the exit status of COMMAND. +$END + +#include + +#if defined (JOB_CONTROL) +#include "../bashtypes.h" +#include +#if defined (HAVE_UNISTD_H) +# include +#endif + +#include "../bashansi.h" +#include "../bashintl.h" + +#include "../shell.h" +#include "../jobs.h" +#include "../execute_cmd.h" +#include "bashgetopt.h" +#include "common.h" + +#define JSTATE_ANY 0x0 +#define JSTATE_RUNNING 0x1 +#define JSTATE_STOPPED 0x2 + +static int execute_list_with_replacements __P((WORD_LIST *)); + +/* The `jobs' command. Prints outs a list of active jobs. If the + argument `-l' is given, then the process id's are printed also. + If the argument `-p' is given, print the process group leader's + pid only. If `-n' is given, only processes that have changed + status since the last notification are printed. If -x is given, + replace all job specs with the pid of the appropriate process + group leader and execute the command. The -r and -s options mean + to print info about running and stopped jobs only, respectively. */ +int +jobs_builtin (list) + WORD_LIST *list; +{ + int form, execute, state, opt, any_failed, job; + sigset_t set, oset; + + execute = any_failed = 0; + form = JLIST_STANDARD; + state = JSTATE_ANY; + + reset_internal_getopt (); + while ((opt = internal_getopt (list, "lpnxrs")) != -1) + { + switch (opt) + { + case 'l': + form = JLIST_LONG; + break; + case 'p': + form = JLIST_PID_ONLY; + break; + case 'n': + form = JLIST_CHANGED_ONLY; + break; + case 'x': + if (form != JLIST_STANDARD) + { + builtin_error (_("no other options allowed with `-x'")); + return (EXECUTION_FAILURE); + } + execute++; + break; + case 'r': + state = JSTATE_RUNNING; + break; + case 's': + state = JSTATE_STOPPED; + break; + + default: + builtin_usage (); + return (EX_USAGE); + } + } + + list = loptend; + + if (execute) + return (execute_list_with_replacements (list)); + + if (!list) + { + switch (state) + { + case JSTATE_ANY: + list_all_jobs (form); + break; + case JSTATE_RUNNING: + list_running_jobs (form); + break; + case JSTATE_STOPPED: + list_stopped_jobs (form); + break; + } + return (EXECUTION_SUCCESS); + } + + while (list) + { + BLOCK_CHILD (set, oset); + job = get_job_spec (list); + + if ((job == NO_JOB) || jobs == 0 || get_job_by_jid (job) == 0) + { + sh_badjob (list->word->word); + any_failed++; + } + else if (job != DUP_JOB) + list_one_job ((JOB *)NULL, form, 0, job); + + UNBLOCK_CHILD (oset); + list = list->next; + } + return (any_failed ? EXECUTION_FAILURE : EXECUTION_SUCCESS); +} + +static int +execute_list_with_replacements (list) + WORD_LIST *list; +{ + register WORD_LIST *l; + int job, result; + COMMAND *command; + JOB *j; + + /* First do the replacement of job specifications with pids. */ + for (l = list; l; l = l->next) + { + if (l->word->word[0] == '%') /* we have a winner */ + { + job = get_job_spec (l); + + /* A bad job spec is not really a job spec! Pass it through. */ + if (INVALID_JOB (job)) + continue; + + j = get_job_by_jid (job); + free (l->word->word); + l->word->word = itos (j->pgrp); + } + } + + /* Next make a new simple command and execute it. */ + begin_unwind_frame ("jobs_builtin"); + + command = make_bare_simple_command (); + command->value.Simple->words = copy_word_list (list); + command->value.Simple->redirects = (REDIRECT *)NULL; + command->flags |= CMD_INHIBIT_EXPANSION; + command->value.Simple->flags |= CMD_INHIBIT_EXPANSION; + + add_unwind_protect (dispose_command, command); + result = execute_command (command); + dispose_command (command); + + discard_unwind_frame ("jobs_builtin"); + return (result); +} +#endif /* JOB_CONTROL */ + +$BUILTIN disown +$FUNCTION disown_builtin +$DEPENDS_ON JOB_CONTROL +$SHORT_DOC disown [-h] [-ar] [jobspec ...] +Remove jobs from current shell. + +Removes each JOBSPEC argument from the table of active jobs. Without +any JOBSPECs, the shell uses its notion of the current job. + +Options: + -a remove all jobs if JOBSPEC is not supplied + -h mark each JOBSPEC so that SIGHUP is not sent to the job if the + shell receives a SIGHUP + -r remove only running jobs + +Exit Status: +Returns success unless an invalid option or JOBSPEC is given. +$END + +#if defined (JOB_CONTROL) +int +disown_builtin (list) + WORD_LIST *list; +{ + int opt, job, retval, nohup_only, running_jobs, all_jobs; + sigset_t set, oset; + intmax_t pid_value; + + nohup_only = running_jobs = all_jobs = 0; + reset_internal_getopt (); + while ((opt = internal_getopt (list, "ahr")) != -1) + { + switch (opt) + { + case 'a': + all_jobs = 1; + break; + case 'h': + nohup_only = 1; + break; + case 'r': + running_jobs = 1; + break; + default: + builtin_usage (); + return (EX_USAGE); + } + } + list = loptend; + retval = EXECUTION_SUCCESS; + + /* `disown -a' or `disown -r' */ + if (list == 0 && (all_jobs || running_jobs)) + { + if (nohup_only) + nohup_all_jobs (running_jobs); + else + delete_all_jobs (running_jobs); + return (EXECUTION_SUCCESS); + } + + do + { + BLOCK_CHILD (set, oset); + job = (list && legal_number (list->word->word, &pid_value) && pid_value == (pid_t) pid_value) + ? get_job_by_pid ((pid_t) pid_value, 0) + : get_job_spec (list); + + if (job == NO_JOB || jobs == 0 || INVALID_JOB (job)) + { + sh_badjob (list ? list->word->word : _("current")); + retval = EXECUTION_FAILURE; + } + else if (nohup_only) + nohup_job (job); + else + delete_job (job, 1); + UNBLOCK_CHILD (oset); + + if (list) + list = list->next; + } + while (list); + + return (retval); +} +#endif /* JOB_CONTROL */ diff --git a/doc/bash.0 b/doc/bash.0 index 3548b2a7b..faa889890 100644 --- a/doc/bash.0 +++ b/doc/bash.0 @@ -3274,51 +3274,56 @@ RREEAADDLLIINNEE $$EEDDIITTOORR, and _e_m_a_c_s as the editor, in that order. CCoommmmaannddss ffoorr CChhaannggiinngg TTeexxtt + _e_n_d_-_o_f_-_f_i_l_e ((uussuuaallllyy CC--dd)) + The character indicating end-of-file as set, for example, by + ``stty''. If this character is read when there are no charac- + ters on the line, and point is at the beginning of the line, + Readline interprets it as the end of input and returns EEOOFF. ddeelleettee--cchhaarr ((CC--dd)) - Delete the character at point. If point is at the beginning of - the line, there are no characters in the line, and the last - character typed was not bound to ddeelleettee--cchhaarr, then return EEOOFF. + Delete the character at point. If this function is bound to the + same character as the tty EEOOFF character, as CC--dd commonly is, see + above for the effects. bbaacckkwwaarrdd--ddeelleettee--cchhaarr ((RRuubboouutt)) - Delete the character behind the cursor. When given a numeric + Delete the character behind the cursor. When given a numeric argument, save the deleted text on the kill ring. ffoorrwwaarrdd--bbaacckkwwaarrdd--ddeelleettee--cchhaarr - Delete the character under the cursor, unless the cursor is at + Delete the character under the cursor, unless the cursor is at the end of the line, in which case the character behind the cur- sor is deleted. qquuootteedd--iinnsseerrtt ((CC--qq,, CC--vv)) - Add the next character typed to the line verbatim. This is how + Add the next character typed to the line verbatim. This is how to insert characters like CC--qq, for example. ttaabb--iinnsseerrtt ((CC--vv TTAABB)) Insert a tab character. sseellff--iinnsseerrtt ((aa,, bb,, AA,, 11,, !!,, ......)) Insert the character typed. ttrraannssppoossee--cchhaarrss ((CC--tt)) - Drag the character before point forward over the character at - point, moving point forward as well. If point is at the end of - the line, then this transposes the two characters before point. + Drag the character before point forward over the character at + point, moving point forward as well. If point is at the end of + the line, then this transposes the two characters before point. Negative arguments have no effect. ttrraannssppoossee--wwoorrddss ((MM--tt)) - Drag the word before point past the word after point, moving - point over that word as well. If point is at the end of the + Drag the word before point past the word after point, moving + point over that word as well. If point is at the end of the line, this transposes the last two words on the line. uuppccaassee--wwoorrdd ((MM--uu)) - Uppercase the current (or following) word. With a negative + Uppercase the current (or following) word. With a negative argument, uppercase the previous word, but do not move point. ddoowwnnccaassee--wwoorrdd ((MM--ll)) - Lowercase the current (or following) word. With a negative + Lowercase the current (or following) word. With a negative argument, lowercase the previous word, but do not move point. ccaappiittaalliizzee--wwoorrdd ((MM--cc)) - Capitalize the current (or following) word. With a negative + Capitalize the current (or following) word. With a negative argument, capitalize the previous word, but do not move point. oovveerrwwrriittee--mmooddee - Toggle overwrite mode. With an explicit positive numeric argu- + Toggle overwrite mode. With an explicit positive numeric argu- ment, switches to overwrite mode. With an explicit non-positive numeric argument, switches to insert mode. This command affects - only eemmaaccss mode; vvii mode does overwrite differently. Each call + only eemmaaccss mode; vvii mode does overwrite differently. Each call to _r_e_a_d_l_i_n_e_(_) starts in insert mode. In overwrite mode, charac- - ters bound to sseellff--iinnsseerrtt replace the text at point rather than - pushing the text to the right. Characters bound to bbaacckk-- - wwaarrdd--ddeelleettee--cchhaarr replace the character before point with a + ters bound to sseellff--iinnsseerrtt replace the text at point rather than + pushing the text to the right. Characters bound to bbaacckk-- + wwaarrdd--ddeelleettee--cchhaarr replace the character before point with a space. By default, this command is unbound. KKiilllliinngg aanndd YYaannkkiinngg @@ -3327,31 +3332,31 @@ RREEAADDLLIINNEE bbaacckkwwaarrdd--kkiillll--lliinnee ((CC--xx RRuubboouutt)) Kill backward to the beginning of the line. uunniixx--lliinnee--ddiissccaarrdd ((CC--uu)) - Kill backward from point to the beginning of the line. The + Kill backward from point to the beginning of the line. The killed text is saved on the kill-ring. kkiillll--wwhhoollee--lliinnee - Kill all characters on the current line, no matter where point + Kill all characters on the current line, no matter where point is. kkiillll--wwoorrdd ((MM--dd)) - Kill from point to the end of the current word, or if between - words, to the end of the next word. Word boundaries are the + Kill from point to the end of the current word, or if between + words, to the end of the next word. Word boundaries are the same as those used by ffoorrwwaarrdd--wwoorrdd. bbaacckkwwaarrdd--kkiillll--wwoorrdd ((MM--RRuubboouutt)) - Kill the word behind point. Word boundaries are the same as + Kill the word behind point. Word boundaries are the same as those used by bbaacckkwwaarrdd--wwoorrdd. sshheellll--kkiillll--wwoorrdd ((MM--dd)) - Kill from point to the end of the current word, or if between - words, to the end of the next word. Word boundaries are the + Kill from point to the end of the current word, or if between + words, to the end of the next word. Word boundaries are the same as those used by sshheellll--ffoorrwwaarrdd--wwoorrdd. sshheellll--bbaacckkwwaarrdd--kkiillll--wwoorrdd ((MM--RRuubboouutt)) - Kill the word behind point. Word boundaries are the same as + Kill the word behind point. Word boundaries are the same as those used by sshheellll--bbaacckkwwaarrdd--wwoorrdd. uunniixx--wwoorrdd--rruubboouutt ((CC--ww)) - Kill the word behind point, using white space as a word bound- + Kill the word behind point, using white space as a word bound- ary. The killed text is saved on the kill-ring. uunniixx--ffiilleennaammee--rruubboouutt - Kill the word behind point, using white space and the slash - character as the word boundaries. The killed text is saved on + Kill the word behind point, using white space and the slash + character as the word boundaries. The killed text is saved on the kill-ring. ddeelleettee--hhoorriizzoonnttaall--ssppaaccee ((MM--\\)) Delete all spaces and tabs around point. @@ -3360,65 +3365,65 @@ RREEAADDLLIINNEE ccooppyy--rreeggiioonn--aass--kkiillll Copy the text in the region to the kill buffer. ccooppyy--bbaacckkwwaarrdd--wwoorrdd - Copy the word before point to the kill buffer. The word bound- + Copy the word before point to the kill buffer. The word bound- aries are the same as bbaacckkwwaarrdd--wwoorrdd. ccooppyy--ffoorrwwaarrdd--wwoorrdd - Copy the word following point to the kill buffer. The word + Copy the word following point to the kill buffer. The word boundaries are the same as ffoorrwwaarrdd--wwoorrdd. yyaannkk ((CC--yy)) Yank the top of the kill ring into the buffer at point. yyaannkk--ppoopp ((MM--yy)) - Rotate the kill ring, and yank the new top. Only works follow- + Rotate the kill ring, and yank the new top. Only works follow- ing yyaannkk or yyaannkk--ppoopp. NNuummeerriicc AArrgguummeennttss ddiiggiitt--aarrgguummeenntt ((MM--00,, MM--11,, ......,, MM----)) - Add this digit to the argument already accumulating, or start a + Add this digit to the argument already accumulating, or start a new argument. M-- starts a negative argument. uunniivveerrssaall--aarrgguummeenntt - This is another way to specify an argument. If this command is - followed by one or more digits, optionally with a leading minus - sign, those digits define the argument. If the command is fol- - lowed by digits, executing uunniivveerrssaall--aarrgguummeenntt again ends the - numeric argument, but is otherwise ignored. As a special case, - if this command is immediately followed by a character that is - neither a digit or minus sign, the argument count for the next - command is multiplied by four. The argument count is initially - one, so executing this function the first time makes the argu- + This is another way to specify an argument. If this command is + followed by one or more digits, optionally with a leading minus + sign, those digits define the argument. If the command is fol- + lowed by digits, executing uunniivveerrssaall--aarrgguummeenntt again ends the + numeric argument, but is otherwise ignored. As a special case, + if this command is immediately followed by a character that is + neither a digit or minus sign, the argument count for the next + command is multiplied by four. The argument count is initially + one, so executing this function the first time makes the argu- ment count four, a second time makes the argument count sixteen, and so on. CCoommpplleettiinngg ccoommpplleettee ((TTAABB)) - Attempt to perform completion on the text before point. BBaasshh + Attempt to perform completion on the text before point. BBaasshh attempts completion treating the text as a variable (if the text - begins with $$), username (if the text begins with ~~), hostname - (if the text begins with @@), or command (including aliases and + begins with $$), username (if the text begins with ~~), hostname + (if the text begins with @@), or command (including aliases and functions) in turn. If none of these produces a match, filename completion is attempted. ppoossssiibbllee--ccoommpplleettiioonnss ((MM--??)) List the possible completions of the text before point. iinnsseerrtt--ccoommpplleettiioonnss ((MM--**)) - Insert all completions of the text before point that would have + Insert all completions of the text before point that would have been generated by ppoossssiibbllee--ccoommpplleettiioonnss. mmeennuu--ccoommpplleettee - Similar to ccoommpplleettee, but replaces the word to be completed with - a single match from the list of possible completions. Repeated - execution of mmeennuu--ccoommpplleettee steps through the list of possible - completions, inserting each match in turn. At the end of the + Similar to ccoommpplleettee, but replaces the word to be completed with + a single match from the list of possible completions. Repeated + execution of mmeennuu--ccoommpplleettee steps through the list of possible + completions, inserting each match in turn. At the end of the list of completions, the bell is rung (subject to the setting of bbeellll--ssttyyllee) and the original text is restored. An argument of _n - moves _n positions forward in the list of matches; a negative - argument may be used to move backward through the list. This - command is intended to be bound to TTAABB, but is unbound by + moves _n positions forward in the list of matches; a negative + argument may be used to move backward through the list. This + command is intended to be bound to TTAABB, but is unbound by default. mmeennuu--ccoommpplleettee--bbaacckkwwaarrdd - Identical to mmeennuu--ccoommpplleettee, but moves backward through the list - of possible completions, as if mmeennuu--ccoommpplleettee had been given a + Identical to mmeennuu--ccoommpplleettee, but moves backward through the list + of possible completions, as if mmeennuu--ccoommpplleettee had been given a negative argument. This command is unbound by default. ddeelleettee--cchhaarr--oorr--lliisstt - Deletes the character under the cursor if not at the beginning - or end of the line (like ddeelleettee--cchhaarr). If at the end of the + Deletes the character under the cursor if not at the beginning + or end of the line (like ddeelleettee--cchhaarr). If at the end of the line, behaves identically to ppoossssiibbllee--ccoommpplleettiioonnss. This command is unbound by default. ccoommpplleettee--ffiilleennaammee ((MM--//)) @@ -3427,56 +3432,57 @@ RREEAADDLLIINNEE List the possible completions of the text before point, treating it as a filename. ccoommpplleettee--uusseerrnnaammee ((MM--~~)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a username. ppoossssiibbllee--uusseerrnnaammee--ccoommpplleettiioonnss ((CC--xx ~~)) List the possible completions of the text before point, treating it as a username. ccoommpplleettee--vvaarriiaabbllee ((MM--$$)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a shell variable. ppoossssiibbllee--vvaarriiaabbllee--ccoommpplleettiioonnss ((CC--xx $$)) List the possible completions of the text before point, treating it as a shell variable. ccoommpplleettee--hhoossttnnaammee ((MM--@@)) - Attempt completion on the text before point, treating it as a + Attempt completion on the text before point, treating it as a hostname. ppoossssiibbllee--hhoossttnnaammee--ccoommpplleettiioonnss ((CC--xx @@)) List the possible completions of the text before point, treating it as a hostname. ccoommpplleettee--ccoommmmaanndd ((MM--!!)) - Attempt completion on the text before point, treating it as a - command name. Command completion attempts to match the text - against aliases, reserved words, shell functions, shell + Attempt completion on the text before point, treating it as a + command name. Command completion attempts to match the text + against aliases, reserved words, shell functions, shell builtins, and finally executable filenames, in that order. ppoossssiibbllee--ccoommmmaanndd--ccoommpplleettiioonnss ((CC--xx !!)) List the possible completions of the text before point, treating it as a command name. ddyynnaammiicc--ccoommpplleettee--hhiissttoorryy ((MM--TTAABB)) - Attempt completion on the text before point, comparing the text - against lines from the history list for possible completion + Attempt completion on the text before point, comparing the text + against lines from the history list for possible completion matches. ddaabbbbrreevv--eexxppaanndd - Attempt menu completion on the text before point, comparing the + Attempt menu completion on the text before point, comparing the text against lines from the history list for possible completion matches. ccoommpplleettee--iinnttoo--bbrraacceess ((MM--{{)) Perform filename completion and insert the list of possible com- - pletions enclosed within braces so the list is available to the + pletions enclosed within braces so the list is available to the shell (see BBrraaccee EExxppaannssiioonn above). KKeeyybbooaarrdd MMaaccrrooss ssttaarrtt--kkbbdd--mmaaccrroo ((CC--xx (()) - Begin saving the characters typed into the current keyboard + Begin saving the characters typed into the current keyboard macro. eenndd--kkbbdd--mmaaccrroo ((CC--xx )))) Stop saving the characters typed into the current keyboard macro and store the definition. ccaallll--llaasstt--kkbbdd--mmaaccrroo ((CC--xx ee)) - Re-execute the last keyboard macro defined, by making the char- - acters in the macro appear as if typed at the keyboard. - pprriinntt--llaasstt--kkbbdd--mmaaccrroo (()) Print the last keyboard macro defined in - a format suitable for the _i_n_p_u_t_r_c file. + Re-execute the last keyboard macro defined, by making the char- + acters in the macro appear as if typed at the keyboard. + pprriinntt--llaasstt--kkbbdd--mmaaccrroo (()) + Print the last keyboard macro defined in a format suitable for + the _i_n_p_u_t_r_c file. MMiisscceellllaanneeoouuss rree--rreeaadd--iinniitt--ffiillee ((CC--xx CC--rr)) @@ -5715,4 +5721,4 @@ BBUUGGSS -GNU Bash 4.3 2013 October 20 BASH(1) +GNU Bash 4.3 2014 January 6 BASH(1) diff --git a/doc/bash.html b/doc/bash.html index c34b0a7a8..3652bd18e 100644 --- a/doc/bash.html +++ b/doc/bash.html @@ -3,7 +3,7 @@ -
BASH(1)2013 October 20BASH(1) +BASH(1)2014 January 6BASH(1)

Index @@ -7457,16 +7457,25 @@ and emacs as the editor, in that order.
-
delete-char (C-d) +
end-of-file (usually C-d)
-Delete the character at point. If point is at the -beginning of the line, there are no characters in the line, and -the last character typed was not bound to delete-char, -then return +The character indicating end-of-file as set, for example, by +stty. + +If this character is read when there are no characters +on the line, and point is at the beginning of the line, Readline +interprets it as the end of input and returns EOF. +
delete-char (C-d) + +
+Delete the character at point. +If this function is bound to the +same character as the tty EOF character, as C-d +commonly is, see above for the effects.
backward-delete-char (Rubout)
@@ -7812,8 +7821,9 @@ and store the definition.
Re-execute the last keyboard macro defined, by making the characters in the macro appear as if typed at the keyboard. -print-last-kbd-macro () +
print-last-kbd-macro () +
Print the last keyboard macro defined in a format suitable for the inputrc file. @@ -13147,7 +13157,7 @@ There may be only one active coprocess at a time.
-
GNU Bash 4.32013 October 20BASH(1) +GNU Bash 4.32014 January 6BASH(1)

@@ -13253,6 +13263,6 @@ There may be only one active coprocess at a time.

This document was created by man2html from bash.1.
-Time: 20 November 2013 08:00:32 EST +Time: 23 January 2014 15:52:11 EST diff --git a/doc/bash.pdf b/doc/bash.pdf index 704168284b22db4f1cbda0dc723a4720afa0387e..afd63b848ba67199843c12fe4befe6bb9cbdebfb 100644 GIT binary patch delta 117182 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 BZ1MmA delta 117027 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