mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-12-18 10:16:51 +00:00
(sort_args): Error if option is missing an arg.
This commit is contained in:
parent
a3fc4dee2c
commit
fd76ec52b3
@ -1090,6 +1090,8 @@ sort_args (argc, argv)
|
||||
{
|
||||
options[from] = standard_args[i].nargs;
|
||||
priority[from] = standard_args[i].priority;
|
||||
if (from + standard_args[i].nargs >= argc)
|
||||
fatal ("Option `%s' requires an argument\n", argv[from]);
|
||||
from += standard_args[i].nargs;
|
||||
goto done;
|
||||
}
|
||||
@ -1126,6 +1128,8 @@ sort_args (argc, argv)
|
||||
this option uses just one argv element. */
|
||||
if (equals != 0)
|
||||
options[from] = 0;
|
||||
if (from + options[from] >= argc)
|
||||
fatal ("Option `%s' requires an argument\n", argv[from]);
|
||||
from += options[from];
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user