From: Lars Ingebrigtsen Date: Sat, 11 Dec 2021 05:31:42 +0000 (+0100) Subject: Fix sqlite-mode.el build problems X-Git-Tag: emacs-29.0.90~3604^2~16 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=ad1b80d91dfae992c91d36446af5357f77739bfc;p=emacs.git Fix sqlite-mode.el build problems * lisp/sqlite-mode.el (sqlite-mode-list-tables): Fix function rename usage. --- diff --git a/lisp/sqlite-mode.el b/lisp/sqlite-mode.el index 0e018b62d5d..9edb85b61ab 100644 --- a/lisp/sqlite-mode.el +++ b/lisp/sqlite-mode.el @@ -23,6 +23,8 @@ ;;; Code: +(require 'cl-lib) + (defvar-keymap sqlite-mode-map "g" #'sqlite-mode-list-tables "c" #'sqlite-mode-list-columns @@ -45,7 +47,7 @@ (format "*SQLite %s*" (file-name-nondirectory file)))) (sqlite-mode) (setq-local sqlite--db (sqlite-open file)) - (sqlite-list-tables)) + (sqlite-mode-list-tables)) (defun sqlite-mode-list-tables () "Re-list the tables from the currently selected database."