aboutsummaryrefslogtreecommitdiffstats
path: root/yeetube.el
diff options
context:
space:
mode:
authorThanos Apollo <[email protected]>2023-10-15 16:47:30 +0300
committerThanos Apollo <[email protected]>2023-10-17 09:24:22 +0300
commit67cbf8ab8b76daef17549a4f562c79a930b7b6fe (patch)
treebcb36d6cec6a8c801f3f4632d690181a3db03c09 /yeetube.el
parent5f60251c567730b554f87374119b5fc2eef8c426 (diff)
yeetube:(get) Fix error messages
Report back value in quotes
Diffstat (limited to 'yeetube.el')
-rw-r--r--yeetube.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/yeetube.el b/yeetube.el
index 2769dff..01b747d 100644
--- a/yeetube.el
+++ b/yeetube.el
@@ -98,7 +98,7 @@ You can change the value to an invidious instance.")
(defun yeetube-get (keyword)
"Retrieve KEYWORD value from `yeetube-content'."
(unless (keywordp keyword)
- (error "Value %s is not a keyword" keyword))
+ (error "Value `%s' is not a keyword" keyword))
(let ((video-info
(cl-getf (nth (- (line-number-at-pos) 1) (reverse yeetube-content)) keyword)))
video-info))