From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Garreau\, Alexandre" Subject: C-c C-c in src block interpret line as table Date: Fri, 26 Oct 2018 08:45:34 +0200 Message-ID: <87in1pgq9d.fsf@portable.galex-713.eu> Mime-Version: 1.0 Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:59774) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gFvsI-0008IP-KE for emacs-orgmode@gnu.org; Fri, 26 Oct 2018 02:45:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gFvsG-00035r-VF for emacs-orgmode@gnu.org; Fri, 26 Oct 2018 02:45:38 -0400 Received: from portable.galex-713.eu ([2a00:5884:8305::1]:49104) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gFvsG-00035F-Nh for emacs-orgmode@gnu.org; Fri, 26 Oct 2018 02:45:36 -0400 Received: from localhost ([::1] helo=portable.galex-713.eu) by portable.galex-713.eu with esmtps (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1gFvsE-0002SS-GG for emacs-orgmode@gnu.org; Fri, 26 Oct 2018 08:45:34 +0200 List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: "Emacs-orgmode" To: emacs-org list I tried to eval the following block, and my point was on the last line, of course, but since it begins with a =E2=80=9C|=E2=80=9D, it was interpret= ed as a table, and block was not evaled: I believe this is a bug. Why would a org table be inside a non-org source block? it=E2=80=99s not even inside a comment! #+BEGIN_SRC ocaml :results verbatim let rec premiers =3D=20 function [] -> [] | (a,b) :: q -> a :: premiers q ;; | #+END_SRC Note the remaining =E2=80=9C|=E2=80=9D at the end of the last line was adde= d by org, not me, not part of source code.