Skip to content
GitLab
Projects
Groups
Snippets
Help
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Open sidebar
emacs
emacs
Commits
249443b6
Commit
249443b6
authored
Jul 29, 1997
by
Richard M. Stallman
Browse files
(sort_args): Check properly for `--'.
parent
24902ecd
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
1 addition
and
1 deletion
+1
-1
src/emacs.c
src/emacs.c
+1
-1
No files found.
src/emacs.c
View file @
249443b6
...
...
@@ -1223,7 +1223,7 @@ sort_args (argc, argv)
/* If we have found "--", don't consider
any more arguments as options. */
if
(
argv
[
from
][
1
]
==
'-'
)
if
(
argv
[
from
][
1
]
==
'-'
&&
argv
[
from
][
2
]
==
0
)
{
/* Leave the "--", and everything following it, at the end. */
for
(;
from
<
argc
;
from
++
)
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment