Handle tabs in the SQL shown in the column listing
* lisp/sqlite-mode.el (sqlite-mode-list-columns): Handle tabs. (Bug#64964)
This commit is contained in:
parent
573fcf2712
commit
04996b2124
1 changed files with 1 additions and 1 deletions
|
@ -126,7 +126,7 @@
|
||||||
(forward-line 1)
|
(forward-line 1)
|
||||||
(if (looking-at " ")
|
(if (looking-at " ")
|
||||||
;; Delete the info.
|
;; 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)
|
(match-beginning 0)
|
||||||
(point-max)))
|
(point-max)))
|
||||||
;; Insert the info.
|
;; Insert the info.
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue