emacs-orgmode@gnu.org archives
 help / color / mirror / code / Atom feed
* [PATCH] [org-table] user-chosen separator in org-table-convert-region
@ 2013-09-03 14:25 francois
  0 siblings, 0 replies; 5+ messages in thread
From: francois @ 2013-09-03 14:25 UTC (permalink / raw)
  To: emacs-orgmode

Hello,

I made this patch to make easier conversion to
org-table from csv-like text with arbitrary separator.

---
  lisp/org-table.el |    2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/lisp/org-table.el b/lisp/org-table.el
index c7e7eb8..c8c2462 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -575,6 +575,8 @@ nil      When nil, the command tries to be smart 
and figure out the
  		 (if (< separator 1)
  		     (user-error "Number of spaces in separator must be >= 1")
  		   (format "^ *\\| *\t *\\| \\{%d,\\}" separator)))
+		((stringp separator)
+		   (format "^ *\\|%s" separator))
  		(t (error "This should not happen"))))
        (while (re-search-forward re end t)
  	(replace-match "| " t t)))
-- 
1.7.9

^ permalink raw reply related	[flat|nested] 5+ messages in thread
* [PATCH] [org-table] user-chosen separator in org-table-convert-region
@ 2013-09-03 10:20 francois
  2013-09-24 13:08 ` Carsten Dominik
  2013-09-29 10:28 ` Carsten Dominik
  0 siblings, 2 replies; 5+ messages in thread
From: francois @ 2013-09-03 10:20 UTC (permalink / raw)
  To: emacs-orgmode

Hello,

I made this patch to make easier conversion to
org-table from csv-like text with arbitrary separator.

---
  lisp/org-table.el |    2 ++
  1 files changed, 2 insertions(+), 0 deletions(-)

diff --git a/lisp/org-table.el b/lisp/org-table.el
index c7e7eb8..c8c2462 100644
--- a/lisp/org-table.el
+++ b/lisp/org-table.el
@@ -575,6 +575,8 @@ nil      When nil, the command tries to be smart 
and figure out the
  		 (if (< separator 1)
  		     (user-error "Number of spaces in separator must be >= 1")
  		   (format "^ *\\| *\t *\\| \\{%d,\\}" separator)))
+		((stringp separator)
+		   (format "^ *\\|%s" separator))
  		(t (error "This should not happen"))))
        (while (re-search-forward re end t)
  	(replace-match "| " t t)))
-- 
1.7.9

^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-09-29 10:29 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-09-03 14:25 [PATCH] [org-table] user-chosen separator in org-table-convert-region francois
  -- strict thread matches above, loose matches on Subject: below --
2013-09-03 10:20 francois
2013-09-24 13:08 ` Carsten Dominik
2013-09-27  9:39   ` francois
2013-09-29 10:28 ` Carsten Dominik

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/emacs/org-mode.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).