From mboxrd@z Thu Jan 1 00:00:00 1970 From: Neil Jerram Subject: Re: Bug: Modifying org-latex-pdf-process doesn't modify the async export behaviour Date: Sat, 07 Apr 2018 10:44:43 +0100 Message-ID: <87vad3qrjo.fsf@ossau.homelinux.net> References: <06b5ea64-0770-42a1-b43b-38fdba52df5c@gmail.com> <87woxj5twk.fsf@nicolasgoaziou.fr> <30b544e2-e36b-f917-3e06-1cb2df048a53@gmail.com> Mime-Version: 1.0 Content-Type: text/plain Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:40376) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f4knJ-0004cf-4n for emacs-orgmode@gnu.org; Sat, 07 Apr 2018 06:10:01 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1f4knE-00071j-6f for emacs-orgmode@gnu.org; Sat, 07 Apr 2018 06:10:01 -0400 Received: from ec2-18-221-17-160.us-east-2.compute.amazonaws.com ([18.221.17.160]:48986 helo=ip-172-31-40-63.us-east-2.compute.internal) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1f4knE-0006zt-1l for emacs-orgmode@gnu.org; Sat, 07 Apr 2018 06:09:56 -0400 In-Reply-To: <30b544e2-e36b-f917-3e06-1cb2df048a53@gmail.com> 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: Leo Vivier , Nicolas Goaziou Cc: emacs-orgmode@gnu.org Leo Vivier writes: > Hello, > > Thank you for pointing me in the right direction. I've created another > init file just for async-export, and not only have I got it to work, but > it's also quite a lot faster than it used to be. > > All that remains now is to find a way to re-write my function. My > knowledge of elisp if fairly limited, and I don't see how to communicate > with the background process other than by writing the value of my > toggle-variable to a file. Hi Leo, In general, one would communicate with a subprocess through its input and output, and to do that in elisp please see (elisp) Input to Processes. Neil