Skip to content

Commit

Permalink
escape seems not necessary (fix #9)
Browse files Browse the repository at this point in the history
  • Loading branch information
rhysd committed Dec 14, 2017
1 parent b0419cf commit 71c97b1
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion autoload/wandbox.vim
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,7 @@ function! s:get_code(range, range_given, ...)
if g:wandbox#expand_included_files
call s:expand_included_files(buf)
endif
return substitute(join(buf, "\n"), '\', '\\\\', 'g')
return join(buf, "\n")
endfunction

function! s:dump_result(compiler, result)
Expand Down

0 comments on commit 71c97b1

Please sign in to comment.