From mboxrd@z Thu Jan 1 00:00:00 1970 From: Skip Collins Subject: source block name contains "call" Date: Fri, 17 Mar 2017 21:06:27 -0400 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:55566) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cp2pV-0005qE-HH for emacs-orgmode@gnu.org; Fri, 17 Mar 2017 21:06:50 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cp2pU-0008TC-Ms for emacs-orgmode@gnu.org; Fri, 17 Mar 2017 21:06:49 -0400 Received: from mail-yw0-x232.google.com ([2607:f8b0:4002:c05::232]:35231) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cp2pU-0008S4-IQ for emacs-orgmode@gnu.org; Fri, 17 Mar 2017 21:06:48 -0400 Received: by mail-yw0-x232.google.com with SMTP id v198so63262160ywc.2 for ; Fri, 17 Mar 2017 18:06:48 -0700 (PDT) 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 am editing some Perl. When I export any source block that includes the word "call" in the name, it causes the verbatim formatting to be dropped. This happens with both html and latex exports. The problem does not seem to be limited to Perl. A minimal example: * foo #+name: call_foo #+begin_src perl ## This is a comment #+end_src * bar #+name: bar #+begin_src perl ## This is a comment #+end_src The code under the first heading is exported as normal org text, omitting the #+name and #+begin_src lines, but including the #+end_src line. The second heading is exported as expected, with the source block properly formatted verbatim. The word "call" seems to be the trigger for the bad behavior.