From mboxrd@z Thu Jan 1 00:00:00 1970 From: Tobias Zawada Subject: Re: Bug: Infinite recursion in org-babel-get-src-block-info [9.1.13 (9.1.13-elpaplus @ mixed installation! Date: Thu, 6 Dec 2018 00:07:35 +0100 (CET) Message-ID: <358015048.8021.1544051255809@email.ionos.de> References: <93868713.269034.1543941934831@email.ionos.de> <1396425191.5271.1544025592769@email.ionos.de> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36115) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1gUgGu-00089n-Cn for emacs-orgmode@gnu.org; Wed, 05 Dec 2018 18:08:01 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1gUgGo-0007hD-EQ for emacs-orgmode@gnu.org; Wed, 05 Dec 2018 18:07:58 -0500 Received: from mout.kundenserver.de ([212.227.17.10]:45067) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_128_CBC_SHA1:16) (Exim 4.71) (envelope-from ) id 1gUgGm-0007RY-Bm for emacs-orgmode@gnu.org; Wed, 05 Dec 2018 18:07:54 -0500 In-Reply-To: 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: "Berry, Charles" Cc: org-mode-email Dear Charles, The problem is the update from master. >From my understanding Master is more or less the development branch. It is not what can be installed from org via package-install. I believe that is the maint branch. But I can be mistaken. Nevertheless, I had a look at the 9.14-Tag on https://code.orgmode.org/bzg/org-mode. And the problem is there. AFAIK from general understanding of software development bugfixes should also be applied to the maintenance version of a program. You find a more exact description inclusive the relevant links at https://emacs.stackexchange.com/a/46424/2370 Best regards, Tobias Zawada > "Berry, Charles" hat am 5. Dezember 2018 um 18:44 geschrieben: > > > Hmmm. > > I just updated from master using `make update2'. > > I ran > > /Applications/Emacs.app/Contents/MacOS/Emacs -q > > which is morally equivalent to `emacs -q' on a linux box. > > I had to customize `org-babel-load-languages' to add `shell'. > > I copied your text to an org buffer did C-c ' to extract the org src and saved it as a file. > > I ran the last code block using C-c C-c. > > It gave me the expected result. The message buffer had: > > ,---- > | executing Elisp code block (add3)... > | > | (num (quote 5)) > | > | "8" > | executing Elisp code block (add3)... > | > | (num (quote 5)) > | > | "8" > | executing Sh code block (whatIsN)... > | Wrote /var/folders/kb/2hchpbyj7lb6z76l0q73w_fh0000gn/T/babel-994SoA/ob-input-994MXT > | "8" > | executing Sh code block... > | Wrote /var/folders/kb/2hchpbyj7lb6z76l0q73w_fh0000gn/T/babel-994SoA/ob-input-994AAs > | Code block evaluation complete. > | Auto-saving... > `---- > > I suggest you try `emacs -q' to be sure it isn't something in your init file. > > If that doesn't work, my best guess is you have a mixed installation that you will need to repair. > > HTH, > > Chuck > > On Dec 5, 2018, at 7:59 AM, Tobias Zawada wrote: > > > > Dear Charles, > > I installed orgmode 9.14 from org via ~package-install~. > > > > The problem is still present there.