summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/ng-input.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
committerAdam Borowski <kilobyte@angband.pl>2010-10-15 01:55:59 +0200
commit555734fcd3aef4c83605d70d0456dda28b7b5ace (patch)
tree9c34fe5bc58d5f3d4c0a7622045adc7aa1d17a98 /crawl-ref/source/ng-input.cc
parentacf5187334f2cfb983a1a8de07d1e77f73e4283a (diff)
downloadcrawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.tar.gz
crawl-ref-555734fcd3aef4c83605d70d0456dda28b7b5ace.zip
Massive spacing fixes: "( spaces after parentheses )".
I did review it manually to find places where they made sense (like some tables), but for a massive sed job like this there might be places that I missed.
Diffstat (limited to 'crawl-ref/source/ng-input.cc')
-rw-r--r--crawl-ref/source/ng-input.cc10
1 files changed, 5 insertions, 5 deletions
diff --git a/crawl-ref/source/ng-input.cc b/crawl-ref/source/ng-input.cc
index 0f46292285..035eece641 100644
--- a/crawl-ref/source/ng-input.cc
+++ b/crawl-ref/source/ng-input.cc
@@ -48,17 +48,17 @@ void opening_screen(void)
msg += "\n";
formatted_string::parse_string(msg).display();
- textcolor( LIGHTGREY );
+ textcolor(LIGHTGREY);
}
static void _show_name_prompt(int where)
{
cgotoxy(1, where);
- textcolor( CYAN );
+ textcolor(CYAN);
cprintf("\nWhat is your name today? ");
- textcolor( LIGHTGREY );
+ textcolor(LIGHTGREY);
}
bool is_good_name(const std::string& name, bool blankOK, bool verbose)
@@ -168,10 +168,10 @@ bool validate_player_name(const std::string &name, bool verbose)
{
if (verbose)
{
- cprintf( "\n"
+ cprintf("\n"
"Alpha-numerics, spaces, dashes, periods "
"and underscores only, please."
- "\n" );
+ "\n");
}
return (false);
}