Skip to content
New issue

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

let*: Symbol’s function definition is void: \(setf\ elfeed-meta\) #537

Open
konstare opened this issue Dec 15, 2024 · 0 comments
Open

Comments

@konstare
Copy link

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?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant