[Emacs] Remove messages from download-to-buffer

This commit is contained in:
Ivan Malison 2016-09-27 13:02:21 -07:00
parent 914b3467a0
commit 0c9f2371a0
No known key found for this signature in database
GPG Key ID: 62530EFBE99DC2F8

View File

@ -721,10 +721,7 @@ A macro for composing functions together to build an interactive command to copy
:parser 'buffer-string
:success (cl-function
(lambda (&key data &allow-other-keys)
(message "called")
(let ((created-buffer (get-buffer-create uri)))
(message "here")
(message "buf: %s" created-buffer)
(with-current-buffer created-buffer
(insert data))
(switch-to-buffer created-buffer))))))