Returns the current token or token to the token stream
# File lib/rdoc/markup/parser.rb, line 512
def unget token = @current_token
p :unget => token if @debug
raise Error, 'too many #ungets' if token == @tokens.first
@tokens.unshift token if token
end