> From: Stefan Monnier <monn...@iro.umontreal.ca> > Cc: Jean Louis <bugs@gnu.support>, 72...@debbugs.gnu.org > Date: Sat, 31 Aug 2024 10:09:05 -0400 > > > 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? > > AFAIK, the standard way to do that is: > > (cl-defmethod multisession-backend-value ((_type (eql 'sqlite)) object) > (if (not (sqlite-available-p)) > (cl-call-next-method) > ...do the usual thing...))
Thanks, now done on master, and closing the bug.