diff options
author | gbrandl <devnull@localhost> | 2007-12-14 22:32:18 +0100 |
---|---|---|
committer | gbrandl <devnull@localhost> | 2007-12-14 22:32:18 +0100 |
commit | c86f98f02a3288b87fa46e01998ab8224bff115d (patch) | |
tree | d040c53a490724344be58edae01e14b420bfce2f | |
parent | 4b2342b450e066aabf2ccf0bfc960a705df3d4b7 (diff) | |
download | pygments-c86f98f02a3288b87fa46e01998ab8224bff115d.tar.gz |
Fix #314.
-rw-r--r-- | pygments/lexers/text.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pygments/lexers/text.py b/pygments/lexers/text.py index d0a806d9..c82c0b7c 100644 --- a/pygments/lexers/text.py +++ b/pygments/lexers/text.py @@ -233,7 +233,7 @@ class IrcLogsLexer(RegexLexer): ("^" + timestamp + r'(\s*<.*>\s*)$', bygroups(Comment.Preproc, Name.Tag)), # normal msgs ("^" + timestamp + r""" - (\s*<.*>\s*) # Nick """, + (\s*<.*?>\s*) # Nick """, bygroups(Comment.Preproc, Name.Tag), 'msg'), # /me msgs ("^" + timestamp + r""" |