mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-06 02:02:42 +02:00
commit bash-20150529 snapshot
This commit is contained in:
+11
-1
@@ -4735,6 +4735,8 @@ static struct name_and_function special_vars[] = {
|
||||
{ "COMP_WORDBREAKS", sv_comp_wordbreaks },
|
||||
#endif
|
||||
|
||||
{ "EXECIGNORE", sv_execignore },
|
||||
|
||||
{ "FUNCNEST", sv_funcnest },
|
||||
|
||||
{ "GLOBIGNORE", sv_globignore },
|
||||
@@ -4924,6 +4926,14 @@ sv_funcnest (name)
|
||||
funcnest_max = num;
|
||||
}
|
||||
|
||||
/* What to do when EXECIGNORE changes. */
|
||||
void
|
||||
sv_execignore (name)
|
||||
char *name;
|
||||
{
|
||||
setup_exec_ignore (name);
|
||||
}
|
||||
|
||||
/* What to do when GLOBIGNORE changes. */
|
||||
void
|
||||
sv_globignore (name)
|
||||
@@ -4985,7 +4995,7 @@ sv_winsize (name)
|
||||
return;
|
||||
|
||||
v = find_variable (name);
|
||||
if (v == 0 || var_isnull (v))
|
||||
if (v == 0 || var_isset (v) == 0)
|
||||
rl_reset_screen_size ();
|
||||
else
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user