diff options
author | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-08-29 19:48:15 +0000 |
---|---|---|
committer | Giuseppe Bilotta <giuseppe.bilotta@gmail.com> | 2007-08-29 19:48:15 +0000 |
commit | fff8d44385c9cbac4c2e037ea950db0f747f9f46 (patch) | |
tree | cab6d284944a8e2dcba6421167023f08e65d9a5b | |
parent | b6812ac0c2fc9c031955635fc2134aebd3c9b526 (diff) |
Add Italic (\011) constant to complement Underline, Reverse and Bold
-rw-r--r-- | lib/rbot/message.rb | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/lib/rbot/message.rb b/lib/rbot/message.rb index 3292cb83..4110e634 100644 --- a/lib/rbot/message.rb +++ b/lib/rbot/message.rb @@ -17,6 +17,7 @@ module Irc Bold = "\002" Underline = "\037" Reverse = "\026" + Italic = "\011" Color = "\003" ColorRx = /#{Color}\d\d?(?:,\d\d?)?/ |