# File nqxml/writer.rb, line 174
 def indent
	    spaces = (@tagNameStack.length - 1) * INDENT_OFFSET
	    @io << ("\t" * (spaces >> 3)) << (' ' * (spaces & 7))
	end