# File nqxml/tokenizer.rb, line 169
 def skipChar(n = 1)
	    while @currInput.pos >= @currInput.length
		@inputStack.pop()
		@currInput = @inputStack.last
	    end

	    @currInput.pos += n
	end