From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ian Kelling Subject: bug: in source block, titles are not seen as source Date: Tue, 27 May 2014 21:13:11 -0700 Message-ID: <87lhtm7d7s.fsf@treetowl.lan> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:50312) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WpVG6-0002D8-Nk for emacs-orgmode@gnu.org; Wed, 28 May 2014 00:14:39 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WpVG1-000887-G8 for emacs-orgmode@gnu.org; Wed, 28 May 2014 00:14:34 -0400 Received: from out1-smtp.messagingengine.com ([66.111.4.25]:51909) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WpVG1-00087r-A4 for emacs-orgmode@gnu.org; Wed, 28 May 2014 00:14:29 -0400 Received: from treetowl.lan (unknown [73.53.70.213]) by mail.messagingengine.com (Postfix) with ESMTPA id B7CEE6800DC for ; Wed, 28 May 2014 00:14:25 -0400 (EDT) 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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I've had this bug me a few times when I work with here documents in bash. #+begin_src sh some-command <<'EOF' * some text EOF #+end_src the line beginning with * is treated as a title and folded. The same goes for example blocks, and perhaps other things. as a workaround, I can insert a tab char, and change the redirection operator to <<- to strip leading tabs some-command <<-'EOF' * some text EOF - Ian