diff options
author | Thanos Apollo <[email protected]> | 2024-06-08 09:10:43 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2024-06-09 23:53:31 +0300 |
commit | c9721a295f4fd30a44e94b3424151fa8a14d22ae (patch) | |
tree | e8f47c41e2dbbf58b0522887fc4f944dff0701d3 | |
parent | 755d6051ac9cc43e9234de589c4c1661cb7cf1ec (diff) |
[fix] typos & style
-rw-r--r-- | yeetube.el | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -367,12 +367,12 @@ Image is inserted in BUFFER for ENTRY." (let ((url-buffer (current-buffer))) (unwind-protect (if-let ((err (plist-get :error status))) - (message "Error %s in retrieving a thumnail: %S" (car err) (cdr err)) + (message "Error %s in retrieving a thumbnail: %S" (car err) (cdr err)) (if-let ((handle (mm-dissect-buffer t)) (image (mm-get-image handle))) (progn - (setf (image-property image :max-width) (car yeetube-thumbnail-size)) - (setf (image-property image :max-height) (cdr yeetube-thumbnail-size)) + (setf (image-property image :max-width) (car yeetube-thumbnail-size) + (image-property image :max-height) (cdr yeetube-thumbnail-size)) (with-current-buffer buffer (with-silent-modifications (save-excursion |