From mboxrd@z Thu Jan 1 00:00:00 1970 Path: news.gmane.org!not-for-mail From: =?ISO-8859-15?Q?Andreas_R=F6hler?= Newsgroups: gmane.emacs.help Subject: Re: (interactive "rP") valid? Date: Tue, 28 May 2013 13:38:20 +0200 Message-ID: <51A4972C.5000903@easy-emacs.de> References: <87mwrfe4oy.fsf@gmail.com> NNTP-Posting-Host: plane.gmane.org Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-15; format=flowed Content-Transfer-Encoding: 7bit X-Trace: ger.gmane.org 1369740966 1932 80.91.229.3 (28 May 2013 11:36:06 GMT) X-Complaints-To: usenet@ger.gmane.org NNTP-Posting-Date: Tue, 28 May 2013 11:36:06 +0000 (UTC) To: help-gnu-emacs@gnu.org Original-X-From: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Tue May 28 13:36:06 2013 Return-path: Envelope-to: geh-help-gnu-emacs@m.gmane.org Original-Received: from lists.gnu.org ([208.118.235.17]) by plane.gmane.org with esmtp (Exim 4.69) (envelope-from ) id 1UhICD-00076V-Jw for geh-help-gnu-emacs@m.gmane.org; Tue, 28 May 2013 13:36:05 +0200 Original-Received: from localhost ([::1]:45180 helo=lists.gnu.org) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhICD-0007rR-6a for geh-help-gnu-emacs@m.gmane.org; Tue, 28 May 2013 07:36:05 -0400 Original-Received: from eggs.gnu.org ([208.118.235.92]:42612) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhIBs-0007rC-S5 for help-gnu-emacs@gnu.org; Tue, 28 May 2013 07:35:51 -0400 Original-Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UhIBm-0005N2-Im for help-gnu-emacs@gnu.org; Tue, 28 May 2013 07:35:44 -0400 Original-Received: from moutng.kundenserver.de ([212.227.17.9]:59935) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UhIBm-0005MX-98 for help-gnu-emacs@gnu.org; Tue, 28 May 2013 07:35:38 -0400 Original-Received: from [192.168.178.21] (brln-4db9c5f9.pool.mediaWays.net [77.185.197.249]) by mrelayeu.kundenserver.de (node=mreu0) with ESMTP (Nemesis) id 0MFflp-1Uc58U2lZF-00EqRO; Tue, 28 May 2013 13:35:36 +0200 User-Agent: Mozilla/5.0 (X11; Linux i686; rv:17.0) Gecko/20130329 Thunderbird/17.0.5 In-Reply-To: <87mwrfe4oy.fsf@gmail.com> X-Provags-ID: V02:K0:v5RHgLSbflOW2teseIXm9i59oRpJixH8o/TMwLsMVjE 9n9KPSwimwnQkQs5VmYFJRMvhlTn1D4k4yeAENL0icaFCyEzkO bZ9UYW7huKgoqQhvIDlDp18cbPnKuZe2P/bkxpHmtk84aeYkcV LogAAREVpY9unXuNeTbsKTdScn/z8BdJ/yDRQT1uBLHXtBjjJ7 v27DxeXZEL+b4SdqXbOXrkkenUhk2YD8ta84rTB0TGcm+BLCZ6 tMB4wLAR83tWBNlDWW+AJm4ZaRIZVp3MrKsAJlm2lGZbe1q2c1 NPJ9ZBGmpblsVKkdsNbWXC82Okhlnonzc2yx7tFDkt5VrVvBLM 9U2lwKjVbNV9Q+xgkEC/7/UwS6OknrdIx639QdTzx X-detected-operating-system: by eggs.gnu.org: GNU/Linux 2.4.x-2.6.x [generic] X-Received-From: 212.227.17.9 X-BeenThere: help-gnu-emacs@gnu.org X-Mailman-Version: 2.1.14 Precedence: list List-Id: Users list for the GNU Emacs text editor List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Original-Sender: help-gnu-emacs-bounces+geh-help-gnu-emacs=m.gmane.org@gnu.org Xref: news.gmane.org gmane.emacs.help:91098 Archived-At: Am 28.05.2013 13:15, schrieb Thorsten Jolitz: > > Hi List, > > function 'org-table-convert-region' uses (interactive "rP") and has the > following signature: > > ,--------------------------------------------------------- > | (org-table-convert-region BEG0 END0 &optional SEPARATOR) > `--------------------------------------------------------- > > Non-interactively, the function works as expected: > different behaviour conditional on SEPARATOR being nil, an integer, '(4) > or '(16). > > However, used interactively, SEPARATOR is always nil when 'C-u > M-x' is used. > > Is (interactive "rP") not a valid combination? > Or is this a bug in Emacs? > needs a newline: (interactive "r\nP")