Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
praich
Ns 3 Dev
Commits
241867e6
Unverified
Commit
241867e6
authored
2 years ago
by
Tommaso Pecorella
Browse files
Options
Download
Email Patches
Plain Diff
core: fix original bug that slipped back in
bf4c4fa9
parent
bf4c4fa9
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
src/core/model/command-line.cc
+1
-1
src/core/model/command-line.cc
with
1 addition
and
1 deletion
+1
-1
src/core/model/command-line.cc
View file @
241867e6
...
...
@@ -77,7 +77,7 @@ Encode (const std::string & source)
// Special case:
// "...blah <file..." is not allowed
// "...foo<bar..." is allowed
if
(
buffer
.
back
()
==
' '
)
if
(
buffer
.
empty
()
||
buffer
.
back
()
==
' '
)
{
buffer
.
append
(
"<"
);
}
...
...
This diff is collapsed.
Click to expand it.
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
Menu
Projects
Groups
Snippets
Help