From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jarmo Hurri Subject: Default silent results Date: Mon, 13 Mar 2017 17:30:52 +0200 Message-ID: <87zigpchxv.fsf@iki.fi> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45176) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cnRwc-0005bn-8g for emacs-orgmode@gnu.org; Mon, 13 Mar 2017 11:31:35 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cnRwX-0003o5-9M for emacs-orgmode@gnu.org; Mon, 13 Mar 2017 11:31:34 -0400 Received: from [195.159.176.226] (port=55730 helo=blaine.gmane.org) by eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1cnRwX-0003lw-4B for emacs-orgmode@gnu.org; Mon, 13 Mar 2017 11:31:29 -0400 Received: from list by blaine.gmane.org with local (Exim 4.84_2) (envelope-from ) id 1cnRw7-0000l1-Ds for emacs-orgmode@gnu.org; Mon, 13 Mar 2017 16:31:03 +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 Greetings. An old org-code of mine stopped working, and while trying to fix it I bumped into the following. What am I missing here? Jarmo * test A simple code block. #+name: org-block #+BEGIN_SRC org | foo | bar | |-----+-----| | 1 | 2 | #+END_SRC A silent call produces no results as expected. #+call: org-block() :results silent This produces results as expected. #+call: org-block() :results replace #+RESULTS: | foo | bar | |-----+-----| | 1 | 2 | But this also behaves like silent, while the manual says that the default is "replace." #+call: org-block()