From: Thorsten Jolitz <tjolitz@gmail.com>
To: emacs-orgmode@gnu.org
Subject: Re: Bug in org-table-convert-region?
Date: Tue, 28 May 2013 11:03:33 +0200 [thread overview]
Message-ID: <87vc63easa.fsf@gmail.com> (raw)
In-Reply-To: 8638t7she1.fsf@somewhere.org
"Sebastien Vauban" <sva-news@mygooglest.com>
writes:
Hi Sebastien,
[...]
>> From the comment-string:
>>
>> ,-----------------------------------------------------------------------
>> | (org-table-convert-region BEG0 END0 &optional SEPARATOR)
>> |
>> | Convert region to a table.[...]
>> | SEPARATOR specifies the field separator in the lines. It can have the
>> | following values:
>> |
>> | '(4) Use the comma as a field separator
>> | '(16) Use a TAB as field separator
>> | integer When a number, use that many spaces as field separator
>> | nil When nil, the command tries to be smart and figure out the
>> `-----------------------------------------------------------------------
>> Looks like a bug in the argument handling?
>
> I don't have an answer, but one extra question (which popped up when reading
> your analysis): how does Emacs see the difference between `C-u' and `C-u 4'?
>
> That is, how to differentiate "Use the comma as a field separator" from "Use
> 4 spaces as field separator"?
The answer is here:
>> and from the elisp manual:
>>
>> ,-----------------------------------------------------------------------
>> | Here are the results of calling display-prefix with various raw prefix
>> | arguments:
>> |
>> | C-u M-x display-prefix -| (4)
>> |
>> | C-u C-u M-x display-prefix -| (16)
>> |
>> | C-u 3 M-x display-prefix -| 3
>> `-----------------------------------------------------------------------
and in the (interactive "rP") specification:
,-------------------------------------------------------------------------
| ‘P’
|
| The raw prefix argument. (Note that this ‘P’ is upper case.) No I/O.
|
| ‘r’
|
| Point and the mark, as two numeric arguments, smallest first. This
| is the only code letter that specifies two successive arguments
| rather than one. No I/O.
`-------------------------------------------------------------------------
thus
,---------------------------------------------------------
| (org-table-convert-region BEG0 END0 &optional SEPARATOR)
`---------------------------------------------------------
with C-u M-x org-table-convert-region should be e.g.
,----------------------------------------
| (org-table-convert-region 38 456 '(4))
`----------------------------------------
and C-u 3 M-x org-table-convert-region should be
,----------------------------------------
| (org-table-convert-region 38 456 3)
`----------------------------------------
but I checked with edebug, its actually
,----------------------------------------
| (org-table-convert-region 38 456 nil)
`----------------------------------------
and "When nil, the command tries to be smart and figure out [itself]"
So the problem seems to be that 'C-u 3' doesn't work as expected in my
case. Could you check if it works for you?
--
cheers,
Thorsten
next prev parent reply other threads:[~2013-05-28 9:04 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-05-27 22:59 Bug in org-table-convert-region? Thorsten Jolitz
2013-05-28 7:17 ` Sebastien Vauban
2013-05-28 9:03 ` Thorsten Jolitz [this message]
2013-05-28 9:28 ` Sebastien Vauban
2013-05-28 10:20 ` Thorsten Jolitz
2013-05-28 11:47 ` [PATCH] org-table-convert-region (was Re: Bug in org-table-convert-region?) Thorsten Jolitz
2013-06-01 5:46 ` Carsten Dominik
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
List information: https://www.orgmode.org/
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=87vc63easa.fsf@gmail.com \
--to=tjolitz@gmail.com \
--cc=emacs-orgmode@gnu.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
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).