From mboxrd@z Thu Jan 1 00:00:00 1970 From: Nick Dokos Subject: [BUG] src code block header does not override buffer-wide header in property Date: Wed, 29 Jun 2016 01:23:12 -0400 Message-ID: <87ziq4fu0v.fsf@alphaville.usersys.redhat.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:47860) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bI7yG-0000R6-Ra for emacs-orgmode@gnu.org; Wed, 29 Jun 2016 01:23:33 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1bI7yC-0005Cf-Lo for emacs-orgmode@gnu.org; Wed, 29 Jun 2016 01:23:31 -0400 Received: from plane.gmane.org ([80.91.229.3]:53569) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1bI7yC-0005Bq-F1 for emacs-orgmode@gnu.org; Wed, 29 Jun 2016 01:23:28 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1bI7y7-0002pS-MB for emacs-orgmode@gnu.org; Wed, 29 Jun 2016 07:23:23 +0200 Received: from pool-74-104-149-70.bstnma.fios.verizon.net ([74.104.149.70]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 29 Jun 2016 07:23:23 +0200 Received: from ndokos by pool-74-104-149-70.bstnma.fios.verizon.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 29 Jun 2016 07:23:23 +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-orgmode@gnu.org This was reported on SO: http://stackoverflow.com/questions/37414837/org-mode-overwriting-globals-properties-in-block-headers The ECM is as follows: --8<---------------cut here---------------start------------->8--- #+PROPERTY: header-args :results silent #+BEGIN_SRC elisp ;; this one is silent (setq foo "bar) #+END_SRC #+BEGIN_SRC elisp :results output ;; this one is being outputted (princ "foo") #+END_SRC --8<---------------cut here---------------end--------------->8--- The second code block *should* output "foo" as its result, but it does not: the :results silent header in the property seems to be in conrol. Org version: Org-mode version 8.3.4 (release_8.3.4-1026-gf0ff25 @ /home/nick/elisp/org-mode/lisp/) -- Nick