mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-07-09 21:20:50 +02:00
commit bash-20080131 snapshot
This commit is contained in:
@@ -15258,3 +15258,10 @@ builtins/fc.def
|
||||
lib/readline/complete.c
|
||||
- fix fnwidth to use string[pos] instead of *string when testing the
|
||||
current character for a control character or rubout
|
||||
|
||||
2/2
|
||||
---
|
||||
general.c
|
||||
- change posix_initialize to turn off source/. searching $PWD when
|
||||
the file sourced is not found in $PATH. Fixes bug reported by
|
||||
Paolo Bonzini <bonzini@gnu.org> and Eric Blake <ebb9@byu.net>
|
||||
|
||||
@@ -15252,3 +15252,9 @@ builtins/fc.def
|
||||
- change computation of last_hist to use remember_on_history instead
|
||||
of a hard-coded `1'. This keeps fc -l -1 in PROMPT_COMMAND from
|
||||
looking too far back
|
||||
|
||||
1/25
|
||||
----
|
||||
lib/readline/complete.c
|
||||
- fix fnwidth to use string[pos] instead of *string when testing the
|
||||
current character for a control character or rubout
|
||||
|
||||
+1
-1
@@ -229,7 +229,7 @@ install: info installdirs bash.info
|
||||
# sed 's:bash\.1:man1/&:' $(srcdir)/builtins.1 > $${TMPDIR:-/var/tmp}/builtins.1
|
||||
# -$(INSTALL_DATA) $${TMPDIR:-/var/tmp}/builtins.1 $(DESTDIR)$(man1dir)/bash_builtins${man1ext}
|
||||
# -$(RM) $${TMPDIR:-/var/tmp}/builtins.1
|
||||
-if test -f bash.info; then d=.; else d=$srcdir; fi; \
|
||||
-if test -f bash.info; then d=.; else d=$(srcdir); fi; \
|
||||
$(INSTALL_DATA) $$d/bash.info $(DESTDIR)$(infodir)/bash.info
|
||||
# run install-info if it is present to update the info directory
|
||||
if $(SHELL) -c 'install-info --version' >/dev/null 2>&1; then \
|
||||
|
||||
+2138
-1644
File diff suppressed because it is too large
Load Diff
+4
-3
@@ -30,9 +30,10 @@ Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
|
||||
and with the Back-Cover Texts as in (a) below. A copy of the license is
|
||||
included in the section entitled ``GNU Free Documentation License''.
|
||||
|
||||
(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
|
||||
this GNU Manual. Buying copies from GNU Press supports the FSF in
|
||||
developing GNU and promoting software freedom.''
|
||||
(a) The FSF's Back-Cover Text is: ``You have the freedom to
|
||||
copy and modify this GNU manual. Buying copies from the FSF
|
||||
supports it in developing GNU and promoting software freedom.''
|
||||
|
||||
@end quotation
|
||||
@end copying
|
||||
|
||||
|
||||
@@ -69,6 +69,7 @@ posix_initialize (on)
|
||||
if (on != 0)
|
||||
{
|
||||
interactive_comments = source_uses_path = expand_aliases = 1;
|
||||
source_searches_cwd = 0;
|
||||
}
|
||||
|
||||
/* Things that should be turned on when posix mode is disabled. */
|
||||
|
||||
+1
-1
@@ -58,7 +58,7 @@ static int unquoted_tilde_word __P((const char *));
|
||||
static void initialize_group_array __P((void));
|
||||
|
||||
/* A standard error message to use when getcwd() returns NULL. */
|
||||
char *bash_getcwd_errstr = N_("getcwd: cannot access parent directories");
|
||||
const char * const bash_getcwd_errstr = N_("getcwd: cannot access parent directories");
|
||||
|
||||
/* Do whatever is necessary to initialize `Posix mode'. */
|
||||
void
|
||||
|
||||
@@ -26,9 +26,10 @@ Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
|
||||
and with the Back-Cover Texts as in (a) below. A copy of the license is
|
||||
included in the section entitled ``GNU Free Documentation License''.
|
||||
|
||||
(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
|
||||
this GNU Manual. Buying copies from GNU Press supports the FSF in
|
||||
developing GNU and promoting software freedom.''
|
||||
(a) The FSF's Back-Cover Text is: You have the freedom to
|
||||
copy and modify this GNU manual. Buying copies from the FSF
|
||||
supports it in developing GNU and promoting software freedom.''
|
||||
|
||||
@end quotation
|
||||
@end copying
|
||||
|
||||
|
||||
@@ -27,9 +27,10 @@ Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
|
||||
and with the Back-Cover Texts as in (a) below. A copy of the license is
|
||||
included in the section entitled ``GNU Free Documentation License''.
|
||||
|
||||
(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
|
||||
this GNU Manual. Buying copies from GNU Press supports the FSF in
|
||||
developing GNU and promoting software freedom.''
|
||||
(a) The FSF's Back-Cover Text is: ``You have the freedom to
|
||||
copy and modify this GNU manual. Buying copies from the FSF
|
||||
supports it in developing GNU and promoting software freedom.''
|
||||
|
||||
@end quotation
|
||||
@end copying
|
||||
|
||||
|
||||
@@ -26,9 +26,10 @@ Invariant Sections, with the Front-Cover texts being ``A GNU Manual'',
|
||||
and with the Back-Cover Texts as in (a) below. A copy of the license is
|
||||
included in the section entitled ``GNU Free Documentation License''.
|
||||
|
||||
(a) The FSF's Back-Cover Text is: ``You are free to copy and modify
|
||||
this GNU Manual. Buying copies from GNU Press supports the FSF in
|
||||
developing GNU and promoting software freedom.''
|
||||
(a) The FSF's Back-Cover Text is: ``You have the freedom to
|
||||
copy and modify this GNU manual. Buying copies from the FSF
|
||||
supports it in developing GNU and promoting software freedom.''
|
||||
|
||||
@end quotation
|
||||
@end copying
|
||||
|
||||
|
||||
Reference in New Issue
Block a user