emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

emacs-29 04996b21241: Handle tabs in the SQL shown in the column listing


From: Eli Zaretskii
Subject: emacs-29 04996b21241: Handle tabs in the SQL shown in the column listing
Date: Thu, 3 Aug 2023 04:48:22 -0400 (EDT)

branch: emacs-29
commit 04996b21241468979ac7f8b4a80563186bee9fad
Author: john muhl <jm@pub.pink>
Commit: Eli Zaretskii <eliz@gnu.org>

    Handle tabs in the SQL shown in the column listing
    
    * lisp/sqlite-mode.el (sqlite-mode-list-columns): Handle tabs.
    (Bug#64964)
---
 lisp/sqlite-mode.el | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/lisp/sqlite-mode.el b/lisp/sqlite-mode.el
index c3047c786f7..8cb94485369 100644
--- a/lisp/sqlite-mode.el
+++ b/lisp/sqlite-mode.el
@@ -126,7 +126,7 @@
         (forward-line 1)
         (if (looking-at " ")
             ;; Delete the info.
-            (delete-region (point) (if (re-search-forward "^[^ ]" nil t)
+            (delete-region (point) (if (re-search-forward "^[^ \t]" nil t)
                                        (match-beginning 0)
                                      (point-max)))
           ;; Insert the info.



reply via email to

[Prev in Thread] Current Thread [Next in Thread]