Navigation Menu

Skip to content

Commit

Permalink
Kill buffer after retrieving the image
Browse files Browse the repository at this point in the history
  • Loading branch information
bertogg committed Dec 12, 2009
1 parent dc5c820 commit c29a321
Show file tree
Hide file tree
Showing 2 changed files with 7 additions and 1 deletion.
5 changes: 5 additions & 0 deletions ChangeLog
@@ -1,3 +1,8 @@
2009-12-12 Alberto Garcia <agarcia@igalia.com>

* twittering-mode.el (twittering-retrieve-image-without-wget):
Kill buffer after retrieving the image

2009-12-07 Naohiro Aota <naota@elisp.net>

* twittering-mode.el (twittering-http-get-default-sentinel): Check
Expand Down
3 changes: 2 additions & 1 deletion twittering-mode.el
Expand Up @@ -1335,7 +1335,8 @@ If STATUS-DATUM is already in DATA-VAR, return nil. If not, return t."
(search-forward-regexp "^$")
(goto-char (1+ (point)))
(delete-region (point-min) (point))
(write-file ,file))))
(write-file ,file)
(kill-buffer (current-buffer)))))
))))

(defun twittering-retrieve-image-with-wget (image-urls)
Expand Down

0 comments on commit c29a321

Please sign in to comment.