diff options
author | Thanos Apollo <[email protected]> | 2023-08-03 08:00:59 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-08-03 08:00:59 +0300 |
commit | 38835e8d4cd228208ca5b43e902a2e520c732963 (patch) | |
tree | abb96fbbd87a3902a01ec5de918956b5f8920127 | |
parent | 204389ae8c44b4abe81cf3f344f463fb5f8e9927 (diff) |
yeetube-change-download-audio-format: rename argument
Rename format -> audio-format
-rw-r--r-- | yeetube.el | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -433,10 +433,10 @@ then run this command interactively." (setq yeetube-download-directory (read-directory-name "Select a directory: "))) -(defun yeetube-change-download-audio-format (format) +(defun yeetube-change-download-audio-format (audio-format) "Change download format to audio FORMAT." (interactive "sSpecify Audio Format(no for nil): ") - (setq yeetube-download-audio-format format) + (setq yeetube-download-audio-format audio-format) (when (equal yeetube-download-audio-format "no") (setq yeetube-download-audio-format nil))) |