From: Andrea Corallo Date: Sun, 19 May 2024 12:50:39 +0000 (+0200) Subject: Silence 3 warnings for non sqlite builds X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=9415df8f76ecb5222bf7890d62a5c0b85892a114;p=emacs.git Silence 3 warnings for non sqlite builds * lisp/emacs-lisp/multisession.el (sqlite-commit) (sqlite-transaction, sqlite-rollback): Declare. (cherry picked from commit 931663f1236fafce18022455b4e4e7a0c7f22c2c) --- diff --git a/lisp/emacs-lisp/multisession.el b/lisp/emacs-lisp/multisession.el index 8299e3dffcc..b7bc5536f78 100644 --- a/lisp/emacs-lisp/multisession.el +++ b/lisp/emacs-lisp/multisession.el @@ -137,6 +137,9 @@ DOC should be a doc string, and ARGS are keywords as applicable to (declare-function sqlite-select "sqlite.c") (declare-function sqlite-open "sqlite.c") (declare-function sqlite-pragma "sqlite.c") +(declare-function sqlite-commit "sqlite.c") +(declare-function sqlite-transaction "sqlite.c") +(declare-function sqlite-rollback "sqlite.c") (defvar multisession--db nil)