Open ratnesh1729 opened 5 months ago
The mkdir docstring in your trace appears nowhere in Emacs, and I can't find a single instance of that string when searching online. Someone or something, which has never been published to the internet, is redefining your mkdir function. The redefinition is not even byte-compiled, so it's not part of your Emacs installation.
(I was concerned that upstream Emacs development broke this interface, but fortunately that's not the case.)
Managed to find a near-match here: https://github.com/netromdk/.emacs.d/blob/26739c81/lisp/2-functions.el#L235-L238
Seems your local definition was copied from here and changed, vice versa, or there's some original common source. Aside from having the wrong number of arguments, this definition also comes with a TOCTOU race condition.
Thanks! I have been using identical one. I must have copied from his file. I will purge this.
Thank you again!
Thank you for the nice package. Running
elfeed-update
gives me this error (vanilla elfeed setup)I traced this is coming from
mkdir
inelfeed-db.el
Seeking pointers etc here.
Thank you!