File tree Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Expand file tree Collapse file tree 1 file changed +12
-13
lines changed Original file line number Diff line number Diff line change @@ -2133,19 +2133,18 @@ code to the Playground. You can disable the confirmation by setting
2133
2133
(encode-coding-string
2134
2134
(buffer-substring-no-properties start end)
2135
2135
'utf-8 ))
2136
-
2137
- (content-buf (url-retrieve
2138
- " https://play.golang.org/share"
2139
- (lambda (arg )
2140
- (cond
2141
- ((equal :error (car arg))
2142
- (signal 'go-play-error (cdr arg)))
2143
- (t
2144
- (re-search-forward " \n\n " )
2145
- (let ((url (format " https://play.golang.org/p/%s "
2146
- (buffer-substring (point ) (point-max )))))
2147
- (when go-play-browse-function
2148
- (funcall go-play-browse-function url))))))))))))
2136
+ (url-retrieve
2137
+ " https://play.golang.org/share"
2138
+ (lambda (arg )
2139
+ (cond
2140
+ ((equal :error (car arg))
2141
+ (signal 'go-play-error (cdr arg)))
2142
+ (t
2143
+ (re-search-forward " \n\n " )
2144
+ (let ((url (format " https://play.golang.org/p/%s "
2145
+ (buffer-substring (point ) (point-max )))))
2146
+ (when go-play-browse-function
2147
+ (funcall go-play-browse-function url)))))))))))
2149
2148
2150
2149
;;;### autoload
2151
2150
(defun go-download-play (url )
You can’t perform that action at this time.
0 commit comments