summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUtkarsh Singh <utkarsh190601@gmail.com>2021-05-01 10:48:07 +0200
committerBastien Guerry <bzg@gnu.org>2021-05-01 10:48:07 +0200
commit7c99d15557dd0bbc27bb14034960bd3a46ffc483 (patch)
treeca8aae524fcc43b8698053e773e7533272ee9d27
parent0a689bf6c5b2346cf8311fbe8326c2034a93e6d2 (diff)
downloadorg-mode-7c99d1555.tar.gz
org-table.el: Allow to import files with no .txt, .tsv or .csv
* lisp/org-table.el (org-table-import): Allow to import files with no .txt, .tsv or .csv extension. TINYCHANGE
-rw-r--r--lisp/org-table.el3
1 files changed, 2 insertions, 1 deletions
diff --git a/lisp/org-table.el b/lisp/org-table.el
index d4d7fba..5862b42 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -929,7 +929,8 @@ lines. It can have the following values:
- regexp When a regular expression, use it to match the separator."
(interactive "f\nP")
(when (and (called-interactively-p 'any)
- (not (string-match-p (rx "." (or "txt" "tsv" "csv") eos) file)))
+ (not (string-match-p (rx "." (or "txt" "tsv" "csv") eos) file))
+ (not (yes-or-no-p "The file's extension is not .txt, .tsv or .csv. Import? ")))
(user-error "Cannot import such file"))
(unless (bolp) (insert "\n"))
(let ((beg (point))