> Date: Mon, 26 Aug 2024 10:57:43 +0300 > From: Jean Louis <bugs@gnu.support> > Cc: 72...@debbugs.gnu.org > > * Eli Zaretskii <e...@gnu.org> [2024-08-25 08:38]: > > Did you customize multisession-storage to the value 'sqlite? The > > default is 'files. You cannot customize it to use 'sqlite if your > > Emacs doesn't have sqlite support (as it seems to be the case). > > Yes, it was customized that way. When I changed the operating system, > then the sqlite development library was not there. > > But if Emacs is trying to use sqlite functions, then it would be > better that program verifies if sqlite functions are there, and then > use default "files" as option. > > I have now compiled it with development libraries and it works again.
Stefan, do we have a way of causing the cl-defmethod dispatch reject a method due to a failed predicate? The relevant method of multisession.el says: (cl-defmethod multisession-backend-value ((_type (eql 'sqlite)) object) How can I modify this (or its callers?) to make this implementation be called only if sqlite-available-p returns non-nil? Btw, it looks like it's okay to have cl-defmethod without a cl-defgeneric for the same method? is that expected?