We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello,
I am trying to write a function, which renames some feeds. I stumble upon the following problem, when i run the following function:
(defun my/elfeed-update-db2 () (interactive) (elfeed-db-ensure) (let ((F (elfeed-db-get-feed "https://nullprogram.com/feed/"))) (setf (elfeed-meta F :title) "AAA")))
i run this function in elfeed-search mode and get in the Message buffer:
let*: Symbol’s function definition is void: \(setf\ elfeed-meta\)
At the same time i can, without any error, run the following code:
(let ((F (elfeed-db-get-feed "https://nullprogram.com/feed/"))) (setf (elfeed-meta F :title) "AAA"))
What is my mistake? What is even the difference between trying to rename a feed in a function and without it? Could you help me to figure it out?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hello,
I am trying to write a function, which renames some feeds. I stumble upon the following problem, when i run the following function:
i run this function in elfeed-search mode and get in the Message buffer:
let*: Symbol’s function definition is void: \(setf\ elfeed-meta\)
At the same time i can, without any error, run the following code:
What is my mistake?
What is even the difference between trying to rename a feed in a function and without it?
Could you help me to figure it out?
The text was updated successfully, but these errors were encountered: