From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrea Rossetti Subject: Bug: (org-babel-result-names) should not return nil [8.2.7c (8.2.7c-1-gf5065b-elpa @ c:/Users/andrea/AppData/Roaming/.emacs.d/elpa/org-20140804/)] Date: Wed, 03 Sep 2014 15:47:24 +0200 Message-ID: <84ppfcu87n.fsf@gmail.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:33618) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPAuP-0001sY-Mc for emacs-orgmode@gnu.org; Wed, 03 Sep 2014 09:47:46 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XPAuG-0004zS-HU for emacs-orgmode@gnu.org; Wed, 03 Sep 2014 09:47:37 -0400 Received: from mail-wi0-x232.google.com ([2a00:1450:400c:c05::232]:62386) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XPAuG-0004zI-2y for emacs-orgmode@gnu.org; Wed, 03 Sep 2014 09:47:28 -0400 Received: by mail-wi0-f178.google.com with SMTP id r20so9805529wiv.11 for ; Wed, 03 Sep 2014 06:47:26 -0700 (PDT) Received: from LAPTOP-ANDREA.laptop-andrea.trieste.it (net-93-144-125-230.cust.dsl.teletu.it. [93.144.125.230]) by mx.google.com with ESMTPSA id pn5sm15971290wjc.4.2014.09.03.06.47.23 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 03 Sep 2014 06:47:24 -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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Hello everyone, if I create this org example: --=-=-= Content-Type: text/x-org Content-Disposition: inline #+NAME: blah #+BEGIN_SRC emacs-lisp :exports results (+ 2 3) #+END_SRC #+RESULTS: blah : 5 --=-=-= Content-Type: text/plain I can't execute the command M-x org-babel-goto-named-result RET blah RET because "blah" is not listed in the available choices. The problem seems to boil down to this function: M-S-; (org-babel-result-names) RET I would expect two results in the message mode line, but I only get a nil. I explored function org-babel-result-names in ob-core.el, the body contains a (match-string 4) but I believe it should be changed into (match-string 6). If I apply that change, (org-babel-result-names) returns two results, and org-babel-goto-named-result provides the expected choice (just "blah" in the example). Is it reproducible for you as well? Does it make sense for you too? Kindest regards, Andrea --=-=-=--