diff options
Diffstat (limited to 'lisp')
| -rw-r--r-- | lisp/image/gravatar.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/image/gravatar.el b/lisp/image/gravatar.el index 81503b7d90a..4bf5875f08c 100644 --- a/lisp/image/gravatar.el +++ b/lisp/image/gravatar.el | |||
| @@ -119,7 +119,7 @@ You can provide a list of argument to pass to CB in CBARGS." | |||
| 119 | (apply #'url-retrieve args)) | 119 | (apply #'url-retrieve args)) |
| 120 | (apply cb | 120 | (apply cb |
| 121 | (with-temp-buffer | 121 | (with-temp-buffer |
| 122 | (mm-disable-multibyte) | 122 | (set-buffer-multibyte nil) |
| 123 | (url-cache-extract (url-cache-create-filename url)) | 123 | (url-cache-extract (url-cache-create-filename url)) |
| 124 | (gravatar-data->image)) | 124 | (gravatar-data->image)) |
| 125 | cbargs)))) | 125 | cbargs)))) |
| @@ -136,7 +136,7 @@ You can provide a list of argument to pass to CB in CBARGS." | |||
| 136 | (kill-buffer (current-buffer)) | 136 | (kill-buffer (current-buffer)) |
| 137 | data)) | 137 | data)) |
| 138 | (with-temp-buffer | 138 | (with-temp-buffer |
| 139 | (mm-disable-multibyte) | 139 | (set-buffer-multibyte nil) |
| 140 | (url-cache-extract (url-cache-create-filename url)) | 140 | (url-cache-extract (url-cache-create-filename url)) |
| 141 | (gravatar-data->image))))) | 141 | (gravatar-data->image))))) |
| 142 | 142 | ||