mirror of
https://github.com/fish-shell/fish-shell
synced 2025-01-14 14:03:58 +00:00
Fix for error messages when loading completions
This commit is contained in:
parent
38e40862fe
commit
94a764d6ea
2 changed files with 11 additions and 1 deletions
2
env.cpp
2
env.cpp
|
@ -1151,7 +1151,7 @@ env_var_t env_get_string( const wcstring &key )
|
||||||
{
|
{
|
||||||
if( res->val == ENV_NULL )
|
if( res->val == ENV_NULL )
|
||||||
{
|
{
|
||||||
return wcstring(L"");
|
return env_var_t::missing_var();
|
||||||
}
|
}
|
||||||
else
|
else
|
||||||
{
|
{
|
||||||
|
|
10
env.h
10
env.h
|
@ -100,6 +100,7 @@ private:
|
||||||
bool is_missing;
|
bool is_missing;
|
||||||
public:
|
public:
|
||||||
static env_var_t missing_var(void);
|
static env_var_t missing_var(void);
|
||||||
|
env_var_t(const env_var_t &x) : wcstring(x), is_missing(x.is_missing) { }
|
||||||
env_var_t(const wcstring & x) : wcstring(x), is_missing(false) { }
|
env_var_t(const wcstring & x) : wcstring(x), is_missing(false) { }
|
||||||
env_var_t(const wchar_t *x) : wcstring(x), is_missing(false) { }
|
env_var_t(const wchar_t *x) : wcstring(x), is_missing(false) { }
|
||||||
env_var_t() : wcstring(L""), is_missing(false) { }
|
env_var_t() : wcstring(L""), is_missing(false) { }
|
||||||
|
@ -111,6 +112,15 @@ public:
|
||||||
wcstring::operator=(s);
|
wcstring::operator=(s);
|
||||||
return *this;
|
return *this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
bool operator==(const env_var_t &s) const {
|
||||||
|
if (is_missing && s.is_missing)
|
||||||
|
return true;
|
||||||
|
else if (s.is_missing || s.is_missing)
|
||||||
|
return false;
|
||||||
|
else
|
||||||
|
return *static_cast<const wcstring *>(this) == *static_cast<const wcstring *>(&s);
|
||||||
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
/**
|
/**
|
||||||
|
|
Loading…
Reference in a new issue