summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/abl-show.cc
diff options
context:
space:
mode:
authorj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-27 13:27:15 +0000
committerj-p-e-g <j-p-e-g@c06c8d41-db1a-0410-9941-cceddc491573>2008-05-27 13:27:15 +0000
commitaaa1bacdf65cbd572379f98897745eb07161d6b0 (patch)
treec3cececa2a7a0ecc2fe095f54f7656e3f7ef0e1f /crawl-ref/source/abl-show.cc
parenta86d2a52392ed50ba63ed9712c05f3574e45d695 (diff)
downloadcrawl-ref-aaa1bacdf65cbd572379f98897745eb07161d6b0.tar.gz
crawl-ref-aaa1bacdf65cbd572379f98897745eb07161d6b0.zip
Update documentation on coding conventions, and apply a few of them. :)
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@5295 c06c8d41-db1a-0410-9941-cceddc491573
Diffstat (limited to 'crawl-ref/source/abl-show.cc')
-rw-r--r--crawl-ref/source/abl-show.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/crawl-ref/source/abl-show.cc b/crawl-ref/source/abl-show.cc
index 62be13def5..d86c658715 100644
--- a/crawl-ref/source/abl-show.cc
+++ b/crawl-ref/source/abl-show.cc
@@ -851,7 +851,7 @@ bool activate_ability()
const int keyin = get_ch();
- if ( keyin == '?' || keyin == '*' )
+ if (keyin == '?' || keyin == '*')
{
selected = choose_ability_menu(talents);
if (selected == -1)
@@ -860,8 +860,8 @@ bool activate_ability()
return (false);
}
}
- else if (keyin == ESCAPE || keyin == ' ' ||
- keyin == '\r' || keyin == '\n')
+ else if (keyin == ESCAPE || keyin == ' '
+ || keyin == '\r' || keyin == '\n')
{
canned_msg( MSG_OK );
return (false);