summaryrefslogtreecommitdiffstats
path: root/crawl-ref/source/l_item.cc
diff options
context:
space:
mode:
authorAdam Borowski <kilobyte@angband.pl>2012-06-21 11:07:15 +0200
committerAdam Borowski <kilobyte@angband.pl>2012-06-21 11:07:15 +0200
commitc5a66a46ca0693f3b2ad6e47866b03d772cf34fd (patch)
treeb74be6feedc08ed50f3936d05c2c03b6dca32eeb /crawl-ref/source/l_item.cc
parent978f43a9532dfce7c0b00830858e7f03b5ae6a0b (diff)
downloadcrawl-ref-c5a66a46ca0693f3b2ad6e47866b03d772cf34fd.tar.gz
crawl-ref-c5a66a46ca0693f3b2ad6e47866b03d772cf34fd.zip
Remove spaces between function identifiers and arguments lists.
Diffstat (limited to 'crawl-ref/source/l_item.cc')
-rw-r--r--crawl-ref/source/l_item.cc16
1 files changed, 8 insertions, 8 deletions
diff --git a/crawl-ref/source/l_item.cc b/crawl-ref/source/l_item.cc
index 2b5a07f233..aadb635caf 100644
--- a/crawl-ref/source/l_item.cc
+++ b/crawl-ref/source/l_item.cc
@@ -245,7 +245,7 @@ IDEF(equipped)
return (1);
}
-static int l_item_do_class (lua_State *ls)
+static int l_item_do_class(lua_State *ls)
{
UDATA_ITEM(item);
@@ -301,7 +301,7 @@ static const char *amulet_types[] =
"resist mutation", "guardian spirit", "faith", "stasis",
};
-static int l_item_do_subtype (lua_State *ls)
+static int l_item_do_subtype(lua_State *ls)
{
UDATA_ITEM(item);
COMPILE_CHECK(ARRAYSZ(ring_types) == NUM_RINGS);
@@ -619,7 +619,7 @@ IDEF(snakable)
}
// DLUA-only functions
-static int l_item_do_pluses (lua_State *ls)
+static int l_item_do_pluses(lua_State *ls)
{
ASSERT_DLUA;
@@ -640,7 +640,7 @@ static int l_item_do_pluses (lua_State *ls)
IDEFN(pluses, do_pluses)
-static int l_item_do_destroy (lua_State *ls)
+static int l_item_do_destroy(lua_State *ls)
{
ASSERT_DLUA;
@@ -661,7 +661,7 @@ static int l_item_do_destroy (lua_State *ls)
IDEFN(destroy, do_destroy)
-static int l_item_do_dec_quantity (lua_State *ls)
+static int l_item_do_dec_quantity(lua_State *ls)
{
ASSERT_DLUA;
@@ -689,7 +689,7 @@ static int l_item_do_dec_quantity (lua_State *ls)
IDEFN(dec_quantity, do_dec_quantity)
-static int l_item_do_inc_quantity (lua_State *ls)
+static int l_item_do_inc_quantity(lua_State *ls)
{
ASSERT_DLUA;
@@ -714,7 +714,7 @@ static int l_item_do_inc_quantity (lua_State *ls)
IDEFN(inc_quantity, do_inc_quantity)
-static iflags_t _str_to_item_status_flags (std::string flag)
+static iflags_t _str_to_item_status_flags(std::string flag)
{
iflags_t flags = 0;
if (flag.find("curse") != std::string::npos)
@@ -732,7 +732,7 @@ static iflags_t _str_to_item_status_flags (std::string flag)
return (flags);
}
-static int l_item_do_identified (lua_State *ls)
+static int l_item_do_identified(lua_State *ls)
{
ASSERT_DLUA;