From mboxrd@z Thu Jan 1 00:00:00 1970 From: Emmanuel Charpentier Subject: Re: (9.2) Noweb blocks not expanded in Python blocks : it should be a bug... Date: Tue, 05 Feb 2019 07:51:43 +0100 Message-ID: References: <0d423cc9589a5b74bbdbbc9a63501ae8d5325a24.camel@free.fr> <87tvhja3l4.fsf@nicolasgoaziou.fr> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: quoted-printable Return-path: Received: from eggs.gnu.org ([209.51.188.92]:59629) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gquaJ-0007na-Jh for emacs-orgmode@gnu.org; Tue, 05 Feb 2019 01:51:56 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gquaI-0004UD-LY for emacs-orgmode@gnu.org; Tue, 05 Feb 2019 01:51:55 -0500 Received: from smtp1-g21.free.fr ([2a01:e0c:1:1599::10]:36457) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1gquaI-0004Pv-Cg for emacs-orgmode@gnu.org; Tue, 05 Feb 2019 01:51:54 -0500 In-Reply-To: <87tvhja3l4.fsf@nicolasgoaziou.fr> 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: Nicolas Goaziou , John Kitchin Cc: org-mode-email as of today's (20190118) org-plus-contrib, this seems fixed. Quick check : =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D # Noweb syntax check #+property: header-args:python :session #+property: header-args:sage :session #+name: A #+begin_src sage L.append(i) #+end_src #+name: B #+begin_src sage :noweb yes :exports both L=3D[] for i in range(1,6): <> L #+end_src #+name: C #+begin_src python L.append(i) #+end_src #+name: D #+begin_src python :noweb yes :exports both L=3D[] for i in range(1,6): <> L #+end_src =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D Thanks a lot ! -- Emmanuel Charpentier Le lundi 04 f=C3=A9vrier 2019 =C3=A0 18:03 +0100, Nicolas Goaziou a =C3=A9= crit : > Hello, >=20 > Robert Pluim writes: >=20 > > John Kitchin writes: > >=20 > > > #+RESULTS: > > > : <<\([^ > > > : ].+?[^ ]\|[^ > > > : ]\)>> > >=20 > > That regex looks malformed, and will only match strings with 1 or 3 > > or > > more characters between << and >>. If someone knows what it=CA=BCs > > supposed > > to be matching we can fix it. eg it looks like it wants to allow > >=20 > > < >=20 > > Is that something that should be accepted? >=20 > I fixed the regexp. Thank you. >=20 > Regards, >=20