PG
Size: a a a
PG
PG
(cl-flet ((quality (tm) (alist-get 'quality tm)))
(let ((method (concat "videos/" (ytel-video-id (ytel-get-current-video)))))
(let-alist (ytel--API-call method '(("fields" "videoThumbnails")))
(eww (alist-get 'url (cl-find "maxresdefault" .videoThumbnails :test #'string= :key #'quality))))))
PG
VL
VL
A
(defun foo ()
(let (default-directory (funcall 'bar))
shell-command (do something)))
PG
A
A
PG
(let ((default-directory nil) (funcall 'bar)) ...)
A
PG
(let ((default-directory (funcall 'bar))) ...)
A
PG
PG
D
PG
T