diff options
author | Thanos Apollo <[email protected]> | 2023-10-15 16:47:30 +0300 |
---|---|---|
committer | Thanos Apollo <[email protected]> | 2023-10-17 09:24:22 +0300 |
commit | 67cbf8ab8b76daef17549a4f562c79a930b7b6fe (patch) | |
tree | bcb36d6cec6a8c801f3f4632d690181a3db03c09 | |
parent | 5f60251c567730b554f87374119b5fc2eef8c426 (diff) |
yeetube:(get) Fix error messages
Report back value in quotes
-rw-r--r-- | yeetube.el | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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)) |