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)
|
||||
(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.
|
||||
|
|
Loading…
Add table
Reference in a new issue