From aaa1bacdf65cbd572379f98897745eb07161d6b0 Mon Sep 17 00:00:00 2001 From: j-p-e-g Date: Tue, 27 May 2008 13:27:15 +0000 Subject: 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 --- crawl-ref/source/abl-show.cc | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'crawl-ref/source/abl-show.cc') 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); -- cgit v1.2.3-54-g00ecf