# File temp/source.rb, line 39
                def encoding=(enc)
                        super
                        @line_break = encode( '>' )
                        if enc != UTF_8
                                @buffer = decode(@buffer)
                                @to_utf = true
                        else
                                @to_utf = false
                        end
                end