mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-06-29 00:19:51 +02:00
commit bash-20090423 snapshot
This commit is contained in:
@@ -1790,12 +1790,12 @@ show_shell_usage (fp, extra)
|
||||
set_opts = savestring (shell_builtins[i].short_doc);
|
||||
if (set_opts)
|
||||
{
|
||||
s = xstrchr (set_opts, '[');
|
||||
s = strchr (set_opts, '[');
|
||||
if (s == 0)
|
||||
s = set_opts;
|
||||
while (*++s == '-')
|
||||
;
|
||||
t = xstrchr (s, ']');
|
||||
t = strchr (s, ']');
|
||||
if (t)
|
||||
*t = '\0';
|
||||
fprintf (fp, _("\t-%s or -o option\n"), s);
|
||||
|
||||
Reference in New Issue
Block a user