summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authordolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-30 16:44:14 +0000
committerdolorous <dolorous@c06c8d41-db1a-0410-9941-cceddc491573>2009-05-30 16:44:14 +0000
commit5277bf424bbd6aeab3d8296ce68695717cfff9ed (patch)
treeeb101b0198a40fd4def0e660130922e10681fb94
parent5554f58f9fee52f636d8d995d072265ba097eed1 (diff)
downloadcrawl-ref-5277bf424bbd6aeab3d8296ce68695717cfff9ed.tar.gz
crawl-ref-5277bf424bbd6aeab3d8296ce68695717cfff9ed.zip
Remove tabs.
git-svn-id: https://crawl-ref.svn.sourceforge.net/svnroot/crawl-ref/trunk@9852 c06c8d41-db1a-0410-9941-cceddc491573
-rw-r--r--crawl-ref/source/acr.cc4
-rw-r--r--crawl-ref/source/dungeon.cc2
-rw-r--r--crawl-ref/source/libunix.cc34
3 files changed, 20 insertions, 20 deletions
diff --git a/crawl-ref/source/acr.cc b/crawl-ref/source/acr.cc
index 300fe50ca8..d7b74d716b 100644
--- a/crawl-ref/source/acr.cc
+++ b/crawl-ref/source/acr.cc
@@ -126,8 +126,8 @@ REVISION("$Rev$");
// ----------------------------------------------------------------------
CLua clua(true);
-CLua dlua(false); // Lua interpreter for the dungeon builder.
-crawl_environment env; // Requires dlua
+CLua dlua(false); // Lua interpreter for the dungeon builder.
+crawl_environment env; // Requires dlua.
player you;
system_environment SysEnv;
game_state crawl_state;
diff --git a/crawl-ref/source/dungeon.cc b/crawl-ref/source/dungeon.cc
index 4f8c2e0385..6105775886 100644
--- a/crawl-ref/source/dungeon.cc
+++ b/crawl-ref/source/dungeon.cc
@@ -7417,7 +7417,7 @@ static void _roguey_level(int level_number, spec_room &sr, bool make_stairs)
if ((sroom = random_map_for_tag("special_room", true)) != NULL)
#else
if (one_chance_in(10)
- && (sroom = random_map_for_tag("special_room", true)) != NULL)
+ && (sroom = random_map_for_tag("special_room", true)) != NULL)
#endif
{
int spec_room_done = random2(25);
diff --git a/crawl-ref/source/libunix.cc b/crawl-ref/source/libunix.cc
index b328363451..f140f28061 100644
--- a/crawl-ref/source/libunix.cc
+++ b/crawl-ref/source/libunix.cc
@@ -462,23 +462,23 @@ int unixcurses_get_vi_key(int keyin)
case 1034: return 1001;
case 1040: return 1005;
- case KEY_HOME: return 1007;
- case KEY_END: return 1001;
- case KEY_DOWN: return 1002;
- case KEY_UP: return 1008;
- case KEY_LEFT: return 1004;
- case KEY_RIGHT: return 1006;
- case KEY_NPAGE: return 1003;
- case KEY_PPAGE: return 1009;
- case KEY_A1: return 1007;
- case KEY_A3: return 1009;
- case KEY_B2: return 1005;
- case KEY_C1: return 1001;
- case KEY_C3: return 1003;
- case KEY_SHOME: return 'Y';
- case KEY_SEND: return 'B';
- case KEY_SLEFT: return 'H';
- case KEY_SRIGHT: return 'L';
+ case KEY_HOME: return 1007;
+ case KEY_END: return 1001;
+ case KEY_DOWN: return 1002;
+ case KEY_UP: return 1008;
+ case KEY_LEFT: return 1004;
+ case KEY_RIGHT: return 1006;
+ case KEY_NPAGE: return 1003;
+ case KEY_PPAGE: return 1009;
+ case KEY_A1: return 1007;
+ case KEY_A3: return 1009;
+ case KEY_B2: return 1005;
+ case KEY_C1: return 1001;
+ case KEY_C3: return 1003;
+ case KEY_SHOME: return 'Y';
+ case KEY_SEND: return 'B';
+ case KEY_SLEFT: return 'H';
+ case KEY_SRIGHT: return 'L';
}
return keyin;
}