mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
cmd.exe: Hide new internal vars during SET.
This commit is contained in:
parent
2b03d7d75f
commit
d1317f5578
@ -1210,9 +1210,12 @@ static int WCMD_setshow_sortenv(const char *s, const char *stub)
|
|||||||
if (!stub || CompareString (LOCALE_USER_DEFAULT,
|
if (!stub || CompareString (LOCALE_USER_DEFAULT,
|
||||||
NORM_IGNORECASE | SORT_STRINGSORT,
|
NORM_IGNORECASE | SORT_STRINGSORT,
|
||||||
str[i], stublen, stub, -1) == 2) {
|
str[i], stublen, stub, -1) == 2) {
|
||||||
WCMD_output_asis(str[i]);
|
/* Don't display special internal variables */
|
||||||
WCMD_output_asis("\n");
|
if (str[i][0] != '=') {
|
||||||
displayedcount++;
|
WCMD_output_asis(str[i]);
|
||||||
|
WCMD_output_asis("\n");
|
||||||
|
displayedcount++;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user