From mboxrd@z Thu Jan 1 00:00:00 1970 From: Julien Cubizolles Subject: (void-variable ignore) in Date: Wed, 08 Oct 2014 21:47:21 +0200 Message-ID: <87fveypcmu.fsf@free.fr> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:52177) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XbxD3-0006Wt-Uv for emacs-orgmode@gnu.org; Wed, 08 Oct 2014 15:47:49 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1XbxCw-0002Jw-Fo for emacs-orgmode@gnu.org; Wed, 08 Oct 2014 15:47:41 -0400 Received: from plane.gmane.org ([80.91.229.3]:40435) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1XbxCw-0002Jo-9x for emacs-orgmode@gnu.org; Wed, 08 Oct 2014 15:47:34 -0400 Received: from list by plane.gmane.org with local (Exim 4.69) (envelope-from ) id 1XbxCu-0003EY-EI for emacs-orgmode@gnu.org; Wed, 08 Oct 2014 21:47:32 +0200 Received: from gas45-3-82-244-252-119.fbx.proxad.net ([82.244.252.119]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 08 Oct 2014 21:47:32 +0200 Received: from j.cubizolles by gas45-3-82-244-252-119.fbx.proxad.net with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Wed, 08 Oct 2014 21:47:32 +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-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org I get this error when exporting an org file in async mode. The export itself goes fine (the correct file is created) but something seems to go wrong at the end. Sorry for the long lines... Julien. --8<---------------cut here---------------start------------->8--- Debugger entered--Lisp error: (void-variable ignore) (funcall ignore results) (let ((results (with-current-buffer proc-buffer (goto-char (point-max)) (backward-sexp) (read (current-buffer))))) (funcall ignore results)) (unwind-protect (let ((results (with-current-buffer proc-buffer (goto-char (point-max)) (backward-sexp) (read (current-buffer))))) (funcall ignore results)) (unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) (if (zerop (process-exit-status p)) (unwind-protect (let ((results (with-current-buffer proc-buffer (goto-char (point-max)) (backward-sexp) (read (current-buffer))))) (funcall ignore results)) (unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) (org-export-add-to-stack proc-buffer nil p) (ding) (message "Process '%s' exited abnormally" p)) (unwind-protect (if (zerop (process-exit-status p)) (unwind-protect (let ((results (with-current-buffer proc-buffer (goto-char ...) (backward-sexp) (read ...)))) (funcall ignore results)) (unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) (org-export-add-to-stack proc-buffer nil p) (ding) (message "Process '%s' exited abnormally" p)) (unless org-export-async-debug (delete-file "/tmp/org-export-process198726Ro"))) (progn (unwind-protect (if (zerop (process-exit-status p)) (unwind-protect (let ((results (with-current-buffer proc-buffer ... ... ...))) (funcall ignore results)) (unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) (org-export-add-to-stack proc-buffer nil p) (ding) (message "Process '%s' exited abnormally" p)) (unless org-export-async-debug (delete-file "/tmp/org-export-process198726Ro")))) (if (eq (process-status p) (quote exit)) (progn (unwind-protect (if (zerop (process-exit-status p)) (unwind-protect (let ((results ...)) (funcall ignore results)) (unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) (org-export-add-to-stack proc-buffer nil p) (ding) (message "Process '%s' exited abnormally" p)) (unless org-export-async-debug (delete-file "/tmp/org-export-process198726Ro"))))) (when (eq (process-status p) (quote exit)) (unwind-protect (if (zerop (process-exit-status p)) (unwind-protect (let ((results (with-current-buffer proc-buffer ... ... ...))) (funcall ignore results)) (unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) (org-export-add-to-stack proc-buffer nil p) (ding) (message "Process '%s' exited abnormally" p)) (unless org-export-async-debug (delete-file "/tmp/org-export-process198726Ro")))) (let ((proc-buffer (process-buffer p))) (when (eq (process-status p) (quote exit)) (unwind-protect (if (zerop (process-exit-status p)) (unwind-protect (let ((results ...)) (funcall ignore results)) (unless org-export-async-debug (and (get-buffer proc-buffer) (kill-buffer proc-buffer)))) (org-export-add-to-stack proc-buffer nil p) (ding) (message "Process '%s' exited abnormally" p)) (unless org-export-async-debug (delete-file "/tmp/org-export-process198726Ro"))))) (lambda (p status) (let ((proc-buffer (process-buffer p))) (when (eq (process-status p) (quote exit)) (unwind-protect (if (zerop (process-exit-status p)) (unwind-protect (let (...) (funcall ignore results)) (unless org-export-async-debug (and ... ...))) (org-export-add-to-stack proc-buffer nil p) (ding) (message "Process '%s' exited abnormally" p)) (unless org-export-async-debug (delete-file "/tmp/org-export-process198726Ro"))))))(# "finished\n") --8<---------------cut here---------------end--------------->8---