From mboxrd@z Thu Jan 1 00:00:00 1970 From: Haider Rizvi Subject: org-mode export behavior change in 9.2? Date: Fri, 11 Jan 2019 18:03:52 -0700 Message-ID: Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([209.51.188.92]:39192) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gi7iZ-0008Dn-1X for emacs-orgmode@gnu.org; Fri, 11 Jan 2019 20:04:08 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gi7iX-0006lM-Gl for emacs-orgmode@gnu.org; Fri, 11 Jan 2019 20:04:06 -0500 Received: from [195.159.176.226] (port=33465 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gi7iW-0006jV-S7 for emacs-orgmode@gnu.org; Fri, 11 Jan 2019 20:04:05 -0500 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1gi7gK-0003LT-2t for emacs-orgmode@gnu.org; Sat, 12 Jan 2019 02:01:48 +0100 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-orgmode@gnu.org I've been using literate programming approach with org-babel for a while. I just noticed that with 9.2, when I try to export (c-c c-e h o) an org doc / section, any shell blocks with a named session are executed as it is exporting to html! I don't think it was this way before? Is there a way to not have it execute each shell block when trying to export. I just tested it with this small .org document. On osx, /usr/bin/say speaks out the arguments. ------------------------- #+begin_src shell :session sh-pcnw3 /usr/bin/say something # say it out loud! #+end_src ------------------------- Without the :session, it doesn't! --