aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-08-03 08:00:59 +0300
committerThanos Apollo <[email protected]>2023-08-03 08:00:59 +0300
commit38835e8d4cd228208ca5b43e902a2e520c732963 (patch)
treeabb96fbbd87a3902a01ec5de918956b5f8920127
parent204389ae8c44b4abe81cf3f344f463fb5f8e9927 (diff)
yeetube-change-download-audio-format: rename argument
Rename format -> audio-format
-rw-r--r--yeetube.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/yeetube.el b/yeetube.el
index b7c9f29..86335e6 100644
--- a/yeetube.el
+++ b/yeetube.el
@@ -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)))