Skip to content

Commit

Permalink
Support for non ASCII characters on Windwos when opening a file from …
Browse files Browse the repository at this point in the history
…command line #42
  • Loading branch information
afichet committed Dec 11, 2023
1 parent 4f3b278 commit 1f80553
Show file tree
Hide file tree
Showing 3 changed files with 2 additions and 2 deletions.
Binary file added .vs/cmake.db
Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions src/main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -75,8 +75,8 @@ int main(int argc, char* argv[])
// Read from stdin
w.open(std::cin);
} else {
for (int i = 1; i < argc; i++) {
w.open(argv[i]);
for (int i = 1; i < a.arguments().size(); i++) {
w.open(a.arguments()[i]);
}
}
}
Expand Down

0 comments on commit 1f80553

Please sign in to comment.