# File lib/treetop/ruby_extensions/string.rb, line 23 def tabto(n) if self =~ /^( *)\S/ indent(n - $1.length) else self end end