summaryrefslogtreecommitdiff
path: root/lisp/sqlite-mode.el
diff options
context:
space:
mode:
authorLars Ingebrigtsen <larsi@gnus.org>2021-12-11 08:18:02 +0100
committerLars Ingebrigtsen <larsi@gnus.org>2021-12-11 08:18:09 +0100
commit5d476a9ed892e390e05eab73e7b57a4b879a1780 (patch)
tree7e7f506387db2d6ae9b225b6dfa37e34b2e715c5 /lisp/sqlite-mode.el
parent7cbda71617f52adde8872c6d2d260e94e4b52edd (diff)
downloademacs-5d476a9ed892e390e05eab73e7b57a4b879a1780.tar.gz
Add FIXME comment
* lisp/sqlite-mode.el (sqlite-mode-delete): New command. (sqlite--mode--list-data, sqlite-mode-list-data): Adjust to new command.
Diffstat (limited to 'lisp/sqlite-mode.el')
-rw-r--r--lisp/sqlite-mode.el5
1 files changed, 4 insertions, 1 deletions
diff --git a/lisp/sqlite-mode.el b/lisp/sqlite-mode.el
index 5e0410e4830..48916b23116 100644
--- a/lisp/sqlite-mode.el
+++ b/lisp/sqlite-mode.el
@@ -178,7 +178,10 @@
(when (or (not (consp table))
(not (eq (car table) 'row)))
(user-error "No row under point"))
- ;; We have to remove all open statements before we can delete something.
+ ;; We have to remove all open statements before we can delete
+ ;; something. FIXME -- perhaps this should be changed not to use
+ ;; long-lived statements, since this presumably locks the file for
+ ;; other users, too.
(dolist (stmt sqlite-mode--statements)
(ignore-errors (sqlite-finalize stmt)))
(setq sqlite-mode--statements nil)