From mboxrd@z Thu Jan 1 00:00:00 1970 From: Andrey Tykhonov Subject: org-html-do-format-code: End of buffer Date: Wed, 19 Mar 2014 19:43:18 +0200 Message-ID: <87vbva2ifd.fsf@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48586) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQKX0-0007i8-SC for emacs-orgmode@gnu.org; Wed, 19 Mar 2014 13:44:07 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WQKWr-000324-Te for emacs-orgmode@gnu.org; Wed, 19 Mar 2014 13:43:58 -0400 Received: from mail-ee0-x231.google.com ([2a00:1450:4013:c00::231]:37274) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WQKWr-00031r-Lp for emacs-orgmode@gnu.org; Wed, 19 Mar 2014 13:43:49 -0400 Received: by mail-ee0-f49.google.com with SMTP id c41so6867727eek.8 for ; Wed, 19 Mar 2014 10:43:48 -0700 (PDT) Received: from demi.gmail ([193.84.22.38]) by mx.google.com with ESMTPSA id a4sm54178994eep.12.2014.03.19.10.43.46 for (version=TLSv1.2 cipher=RC4-SHA bits=128/128); Wed, 19 Mar 2014 10:43:46 -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 When I export org-file to the HTML by means of C-c C-e h H (as HTML buffer) I get the following error: org-html-do-format-code: End of buffer and exporting doesn't finish (buffer with the result doesn't appear). Mentioned org-file is pretty simple: #+name: basic-python #+begin_src python :results silent 'hello world' #+end_src In the same time for Emacs Lisp it does work, for example: #+name: basic-elisp #+begin_src emacs-lisp (defun test () (interactive) (message "Test")) #+end_src Also I tried such commands as `org-html-export-to-html' and `org-html-export-as-html' and got the following in the *Messages* buffer: org-babel-exp process python at line 2... Here is not Git work tree org-html-do-format-code: End of buffer What is the problem? Why mentioned error occurs? How can I fix it? Please help. (org-version) "8.2.5h" $ emacs --version GNU Emacs 24.3.1 I removed built in `org' package and installed it by means of el-get. Thank you, Andrey