summaryrefslogtreecommitdiff
path: root/src/rooms.clj
diff options
context:
space:
mode:
authorScott Ostler <sbsotler@gmail.com>2010-11-15 01:54:43 -0800
committerScott Ostler <sbsotler@gmail.com>2010-11-15 01:54:43 -0800
commitc37bcf6d26abf3fdadd41deda24b020b71627630 (patch)
treeaa9079d58b55d0f896df2e848a423cca2f0e7caa /src/rooms.clj
parent9b5fb453d7fbe79918fe012badbf6a515092cb48 (diff)
Moved constants to config.clj
Diffstat (limited to 'src/rooms.clj')
-rw-r--r--src/rooms.clj2
1 files changed, 0 insertions, 2 deletions
diff --git a/src/rooms.clj b/src/rooms.clj
index e919557..7745630 100644
--- a/src/rooms.clj
+++ b/src/rooms.clj
@@ -101,8 +101,6 @@
(defn build-msg [nick content msg-id]
(struct message-struct nick content (new Date) msg-id))
-(def message-count-limit 200)
-
(defn add-message [msg room]
(insert-and-truncate! (room :messages) msg message-count-limit))