Date: 2007-01-26 23:06
Sender: Hellekin Wolf
Here is a patch:
--- lib/syntax/common.rb~ 2007-01-27 00:01:47.000000000 +0100
+++ lib/syntax/common.rb 2007-01-27 00:02:48.000000000 +0100
@@ -118,7 +118,8 @@
# Append the given data to the currently active chunk.
def append( data )
- @chunk << data
+ @chunk << data if data
+ @chunk
end
# Request that a new group be started. If the current
group is the same
|