Fix some whitespace and misspellings (part 1/x)

svn path=/trunk/; revision=59377
This commit is contained in:
Hermès Bélusca-Maïto 2013-06-29 23:18:27 +00:00
parent d3e9d462e4
commit b067add889
4 changed files with 35 additions and 37 deletions

View file

@ -47,9 +47,7 @@ ReactOS developers:
Brandon Turner <turnerb7@msu.edu>
Bugs
~~~~
There is still many bugs ;)
There are still many bugs ;)
Please report bugs to ReactOS team <ros-dev@reactos.org> or to JIRA at www.reactos.org

View file

@ -1,10 +1,10 @@
Things to do
~~~~~~~~~~~~
*Implmenet Set /P
This is pretty straight forward. When doing this make sure to take into account the way MS handles "set /A /P foo=5" compared to "set /P /A foo=5".
*Implement Set /P
This is pretty straightforward. When doing this, make sure to take into account the way MS handles "set /A /P foo=5" compared to "set /P /A foo=5".
*Compile as unicode
Not sure what is wrong with it, put probably more then just one thing blocking this. For sure pipes break when it is compiled as unicode.
Not sure what is wrong with it, but probably more than just one thing blocking this. For sure pipes break when it is compiled as unicode.
*Move.c code clean up
It works, but it needs to be cleaned up, the code is long and overly complex for what it needs to do. Also, we can remove the hack to cover for MoveFileEx bug as it isn't a bug anymore.
@ -13,9 +13,9 @@ It works, but it needs to be cleaned up, the code is long and overly complex for
It works decent but looks _awful_. Very hard to maintain and/or understand what the hell is going on.
*Remove Hardcoded buffers
This is mostly done thanks to Greatlord(cmd.c is the hardest spot that is left). ANytime when you are handling a string that is taken from the commandline there should be no limit to the size.
This is mostly done thanks to Greatlord (cmd.c is the hardest spot that is left). Anytime when you are handling a string that is taken from the commandline there should be no limit to the size.
*Implment & and &&
*Implement & and &&
& runs two commands no matter what.
&& runs the 2nd command only if the first was a success
Not sure where to put this code even